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

What type of scripts do you need?

Moderator: byronnash

Post Reply
k3d
Posts: 2
Joined: April 12th, 2010, 3:03 am

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
Dan Ebberts
Posts: 320
Joined: June 26th, 2004, 10:01 am
Location: Folsom, CA
Contact:

Like this:

Code: Select all

{
	var myPath = "/D/tempProject/";
	var myProjectName = "ROTO.aep";
	var myProject = File(myPath + myProjectName);
	app.open(myProject);
}
Dan
k3d
Posts: 2
Joined: April 12th, 2010, 3:03 am

Thanks Dan your an angle...... :D
Post Reply