Search found 2 matches
- May 5th, 2009, 4:37 pm
- Forum: Script requests
- Topic: Batch set FPS?
- Replies: 3
- Views: 13078
Re: Batch set FPS?
var myItems = app.project.selection; for (var i = 0; i < myItems.length; i++) { if (myItems[i] instanceof CompItem) { myItems[i].frameRate = 11; } } this will set the framerate of all selected compositions to 11. if you want to change all framerates, change the first line to var myItems = app.proje...
- February 13th, 2009, 7:08 pm
- Forum: Script requests
- Topic: Select multi layers & add duplicated lyr blo selected lyrs
- Replies: 0
- Views: 6974
Select multi layers & add duplicated lyr blo selected lyrs
Im looking for a script that will allow me to, for example: 1) I have multiple layers that are sequenced one frame in length 2) I have a different background layer that I need to duplicate, trim to the length of the layer (in the case one frame) and place below the selected layers in my image sequen...