AE ENHANCERS

Expressions/Scripts/Presets
It is currently Tue May 21, 2013 12:49 pm

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: Apply animation preset
PostPosted: Fri Nov 07, 2008 4:19 am 
Offline

Joined: Fri Nov 07, 2008 2:18 am
Posts: 4
Hi everyone,

Im trying to apply a custom animation preset to a layer but I keep getting a

"Unable to call "applyPreset" because of parameter 1 - /Applications/Adobe After Effects CS3/Presets/Custom Preset.ffx is not a File or Folder Object"

My code looks like:

Code:
function projectItem(name)
{
   var items = app.project.items;
   j = 1;
   
   while (j <= items.length) {
      if (items[j].name == name)
      {
         return app.project.item(j);
         break;
      }
      j++;
   }
}

projectItem("test").layer(1).applyPreset("/Applications/Adobe After Effects CS3/Presets/Custom Preset.ffx");


Please help!


Top
 Profile  
 
 Post subject: Re: Apply animation preset
PostPosted: Mon Nov 10, 2008 12:35 pm 
Offline

Joined: Wed Jul 20, 2005 12:07 am
Posts: 139
You may need to escape the path delimiters and convert the spaces.

Mylenium

_________________
[Pour Mylène, ange sur terre]


Top
 Profile  
 
 Post subject: Re: Apply animation preset
PostPosted: Tue Nov 11, 2008 3:25 am 
Online

Joined: Sat Jun 05, 2004 7:59 am
Posts: 646
Location: London, UK
This should work:

Code:
var thePreset = new File("/Applications/Adobe After Effects CS3/Presets/Custom Preset.ffx");

if (thePreset.exists == true) {
   theLayer.applyPreset(thePreset);
} else {
   alert("no preset found at specified path");
}


Top
 Profile  
 
 Post subject: Re: Apply animation preset
PostPosted: Thu Nov 13, 2008 10:10 am 
Offline

Joined: Fri Nov 07, 2008 2:18 am
Posts: 4
Cheers Paul, worked like a treat!


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group