home *** CD-ROM | disk | FTP | other *** search
/ com!online 2002 July / com!online0702.iso / software / livemotion / DATA1.CAB / Automation / Scripts / Export - Bitmap Edge Fixer.js < prev    next >
Encoding:
Text File  |  2002-05-13  |  488 b   |  24 lines

  1.  
  2. application.currentComposition.saveSelection();
  3.  
  4. //beginUndoAction(application.currentComposition);
  5.  
  6. var objects = application.currentComposition.selection; 
  7.  
  8. for (var i = 0; i < objects.length; ++i)
  9.     {
  10.     var object = objects[i];
  11.     
  12.     object.stopwatch.scale = true;
  13.     
  14.     object.currentFrame = object.startFrame;
  15.     
  16.     object.scale.x = 99;
  17.     object.scale.y = 99;
  18.     }
  19.  
  20. //completeUndoAction(application.currentComposition);
  21.  
  22. application.currentComposition.restoreSelection();
  23.  
  24.