AE ENHANCERS

Expressions/Scripts/Presets
It is currently Thu May 31, 2012 8:14 am

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Scale multiple compositions by percent
PostPosted: Sun Jun 17, 2007 4:39 am 
Offline

Joined: Fri Jun 15, 2007 11:17 pm
Posts: 2
We often need to scale a few hundred movies by 50% and then re-render them. There is already a script that ships with After Effects 7 which allows you to do this one composition at a time, but this gets pretty tedious.

If any of you could write something that allows you to select multiple comps from the project window and scale them all by a percent, I would be very grateful.

-Adam


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jun 17, 2007 6:45 pm 
Offline

Joined: Tue Nov 29, 2005 3:00 am
Posts: 201
Location: Paris
Hi Adam,
you could try something like that

Code:
var percent = prompt("Resize factor (percentage):","50");
var mySelection = app.project.selection;           
app.beginUndoGroup("scaleSelectedComps.jsx");     
for (var i = 0; i < mySelection.length; i++)
{
   if (mySelection[i] instanceof CompItem)
   {
      var compName = mySelection[i].name + " resized";
      compName = compName.substring(0,31);
      var W = Math.round(mySelection[i].width * percent/100);   
      var H = Math.round(mySelection[i].height* percent/100);
      var pixAsp = mySelection[i].pixelAspect;
      var Dur = mySelection[i].duration;
      var frRate = mySelection[i].frameRate;
      var resizedComp = app.project.items.addComp(compName,W,H,pixAsp,Dur,frRate);
      var myLayer = resizedComp.layers.add(mySelection[i]);
      myLayer.scale.setValue([percent,percent]);     
   }
}
app.endUndoGroup();


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jun 18, 2007 4:13 pm 
Offline

Joined: Fri Jun 15, 2007 11:17 pm
Posts: 2
nab,

That is exactly what we needed. Thank you very much for your work.

-Adam


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

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


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