Hello:
I’ve used your script and was able to import a single image and import an image sequence. Is it possible to import an image sequence using file names within an array?(The files are contained within the same folder and I need to call the files multiple times.)
var myFileArray= new Array(“file.ext”,”file.ext”,”file.ext”);
var path = “~/Desktop/Folder/”(myFileArray);
var io = new ImportOptions(File(path));
if (io.canImportAs(ImportAsType.FOOTAGE));
io.importAs = ImportAsType.FOOTAGE;
io.sequence = true;
io.forceAlphabetical = false;
tiffseq = app.project.importFile(io);
tiffseq.name = “File Name”;
alert(“Image Import Complete”);