-
AE script to create project and save as… with a specific name without prompting
How can I create a project and save it with a specified path, in a script? Thanks.
The following doesn’t do the trick:
var my_project_path = '/abc/compositing.aep';
var my_project_file = new File(my_project_path);my_new_project = app.newProject();
app.project.save([my_project_file]);