Question
How to import exr via script
I am able to import any image as a Footage into After Effects by script with `
im_opt = new ImportOptions(new File(image_path));
app.project.importFile(im_opt)`
This is not working with importing .exrs, someone recommended import .exr as a comp (eg.with ```im_opt.importAs = ImportAsType.COMP```
But that doesn't seem to work neither. Does anyone succeed with importing .exr via script?
Thanks.
