Page 1 of 1

How to open a project using script....?

Posted: April 15th, 2010, 12:39 am
by k3d
I have 4 Template for ROTO, COMP, PAINTOUT & TRACKING.
All the Template project are saved in my local D drive under tempProject folder. How do I call the project using script.

:oops:

HELP

Re: How to open a project using script....?

Posted: April 15th, 2010, 1:43 pm
by Dan Ebberts
Like this:

Code: Select all

{
	var myPath = "/D/tempProject/";
	var myProjectName = "ROTO.aep";
	var myProject = File(myPath + myProjectName);
	app.open(myProject);
}
Dan

Re: How to open a project using script....?

Posted: April 15th, 2010, 11:25 pm
by k3d
Thanks Dan your an angle...... :D