Hi,
Using AE CS3 on a mac I get errors when trying to run this script. Can anyone suggest why?
I haven't kept up with the scripting since CS and am not sure why it isn't working...
Search found 38 matches
- October 2nd, 2008, 1:13 am
- Forum: Paul Tuersley's Scripts
- Topic: pt_Panorama
- Replies: 19
- Views: 191902
- July 25th, 2007, 3:47 am
- Forum: Expression Discussion
- Topic: projectile motion
- Replies: 2
- Views: 12735
projectile motion
hi guys, i was doing a search but couldn't find what i need. is there a way to use projectile motion with expressions? say, i have a bunch of layers that i want to blast in a certain direction (with variations). is there a way to set angle and velocity and gravity and trigger from a layer maker? i f...
- July 25th, 2007, 1:50 am
- Forum: Expression Discussion
- Topic: springy expression
- Replies: 15
- Views: 72017
- August 24th, 2006, 5:01 pm
- Forum: Scripts Discussion
- Topic: loop not working to sort out repetitive task, help?
- Replies: 3
- Views: 14561
i figured it out...
the indices idea turned out to be pure gold. not much experience with arrays, so once i figured it out it made things a lot easier. i can now precompose rather than create a comp, copy the layer, place the comp in the original comp and delete the layer (the longhand way of precomposing). less code! ...
- August 24th, 2006, 1:35 am
- Forum: Scripts Discussion
- Topic: loop not working to sort out repetitive task, help?
- Replies: 3
- Views: 14561
i can get it to run on all, but not selected.
i can get it to run on all layers, but i want it to run only on those layers i select. the problem seems to be when i add the new comp in, it shuffles the layer indexes around momentarily, even though after i move the added comp and delete the original layer the indexes are all identical. since afte...
- August 24th, 2006, 1:23 am
- Forum: Scripts Discussion
- Topic: loop not working to sort out repetitive task, help?
- Replies: 3
- Views: 14561
update: it still doesn't work, it only does half???
it works better now, but it only processes every 2nd item of my selected layers? why every 2nd item??? i don't get it. new code: { // opening brace // create undo group app.beginUndoGroup("Foo"); // rd_selectedLayers(comp, inOrder) // // Description: // This function retrieves an array of ...
- August 23rd, 2006, 9:59 pm
- Forum: Scripts Discussion
- Topic: loop not working to sort out repetitive task, help?
- Replies: 3
- Views: 14561
loop not working to sort out repetitive task, help?
hey guys, i have some 500 layers or more of 3d, for a 60 shot piece. each of these layers needs to be precomped once (so that any rotos i do on the matte will trickle down to the multiple times the matte will be used), and then once more (the matte is set to STENCIL LUMA as the topmost layer in anot...
- June 21st, 2006, 5:24 am
- Forum: Expression Discussion
- Topic: date?
- Replies: 8
- Views: 24065
now to format it...
so we can get the current date (which answers part of my question which i just posted on the cow). but then... how to format it? i want my date to appear in all caps, and there seems to be no way to do this. would anyone happen to have solution? i'm stumped. once i can format it according to my ever...
- April 9th, 2006, 8:29 pm
- Forum: Scripts Discussion
- Topic: Moving Items into a Folder
- Replies: 4
- Views: 16930
- April 8th, 2006, 2:40 am
- Forum: Scripts Discussion
- Topic: iterating through selected layers in reverse order
- Replies: 5
- Views: 17295
success!!!!!!!!!!!!!!!!!!!
I GOT IT!!!!!!!!!! and it was by no means intuitive. for me anyway, but i've already said that i don't have a programming brain. var layerIndices = new Array(); for (var i = 0; i < myLayers.length; i++) { layerIndices[layerIndices.length] = myLayers[i].index; } then for (var i=(layerIndices.length -...
- April 8th, 2006, 1:47 am
- Forum: Scripts Discussion
- Topic: iterating through selected layers in reverse order
- Replies: 5
- Views: 17295
- April 8th, 2006, 1:33 am
- Forum: Scripts Discussion
- Topic: iterating through selected layers in reverse order
- Replies: 5
- Views: 17295
also, from looking at redefinery.com, iterating through items in reverse isn't a problem for me, as long as i'm iterating through ALL items in reverse. jeff gives an example of iterating in reverse here. http://www.redefinery.com/ae/fundamentals/comps/#comp_delete as i said, it's iterating through a...
- April 8th, 2006, 1:30 am
- Forum: Scripts Discussion
- Topic: iterating through selected layers in reverse order
- Replies: 5
- Views: 17295
hey byron, nope, that code doesn't do it. what i'm trying to do is make my precomp to eact duration script more robust. i need to take the selected layers, and copyToComp, and i want them copied from the bottom up, so that they maintain their original order in the new comp (as when you copy, it plac...
- April 8th, 2006, 1:21 am
- Forum: Scripts Discussion
- Topic: Moving Items into a Folder
- Replies: 4
- Views: 16930
- April 5th, 2006, 1:46 am
- Forum: Scripts Discussion
- Topic: iterating through selected layers in reverse order
- Replies: 5
- Views: 17295
iterating through selected layers in reverse order
sounds simple, but is confusing me. i thought something like this. var layerIndices = new Array(); for (var i = layerIndices[layerIndices.length]; i >= 1; i--) { layerIndices[layerIndices.length] = myLayers .index; myLayers .copyToComp(layerComp); } but of course i wasn't thinking properly. this is ...