Page 1 of 1

Importing sequence of Files

Posted: March 10th, 2009, 10:55 am
by jfotter
I am trying to figure out how to import a sequence of exr files through a script. I'm new to AE scripting, and can't figure of what I am missing. I can Import a single file, but can't get a sequence to work. Can anyone shed some light on how to do this. Thanks.

Jason

Re: Importing sequence of Files

Posted: April 25th, 2009, 3:39 am
by Paul Tuersley
Here's an example:

Code: Select all

var theSeq = new ImportOptions()
theSeq.file = new File("~/Documents/test/test.0001.exr");
theSeq.sequence = true;
app.project.importFile(theSeq);