Search found 115 matches

by Redsandro
October 21st, 2009, 11:53 am
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 281399

Re: TrackerViz for After Effects

-edit- My mistake! After messing around, I found that I have two identically named precomps in my project. Naturally, this confuses any script that points to one of them! My mistake. For anti confusion, here's my original post: Hi people, I found another bug, although I think it's After Effects' fau...
by Redsandro
October 2nd, 2009, 5:29 pm
Forum: Scripts Discussion
Topic: Can someone fix my UnPreCompose script? [see 2nd post]
Replies: 1
Views: 5468

Re: Can someone fix my UnPreCompose script?

I have been at this too long. After a little break I immediately noticed how I should change this: myPreComp = layer.source; for (var n = myPreComp.length; n> 0; n--) { myPreComp[n].copyToComp(myComp); into this: myPreCompLayers = layer.source.layers; for (var n = myPreCompLayers.length; n> 0; n--) ...
by Redsandro
October 2nd, 2009, 4:53 pm
Forum: Scripts Discussion
Topic: Can someone fix my UnPreCompose script? [see 2nd post]
Replies: 1
Views: 5468

Can someone fix my UnPreCompose script? [see 2nd post]

Hi, I have a lot of wrongly precomposed layers because of some faulty automation from my part. Now I want to reverse that, but I cannot seem to get this to work properly. Can someone take a look at it? This script is supposed to walk all selected layers which are precomps, and copy the layers in the...
by Redsandro
September 13th, 2009, 9:25 am
Forum: Scripts Discussion
Topic: Add project item (solid) to compItem through script
Replies: 5
Views: 11031

Re: Add project item (solid) to compItem through script

Thanks, but in this case the solid I want to use is already in my project. So I think I need to do the walking through after all.
by Redsandro
September 11th, 2009, 10:42 am
Forum: Script requests
Topic: Is there a script to copy composition Motion Blur settings?
Replies: 2
Views: 7610

Re: Is there a script to copy composition Motion Blur settings?

Hey thanks, it seems to save me a lot of hassle!
by Redsandro
September 11th, 2009, 6:55 am
Forum: Script requests
Topic: Is there a script to copy composition Motion Blur settings?
Replies: 2
Views: 7610

Is there a script to copy composition Motion Blur settings?

Somehow I ended up with a lot of (pre)comps with bad motion blur settings.
Anyone know of a script that copies the values from one comp and applies them to all others?
by Redsandro
September 11th, 2009, 6:49 am
Forum: Scripts Discussion
Topic: Add project item (solid) to compItem through script
Replies: 5
Views: 11031

Re: Add project item (solid) to compItem through script

One more related section I fail to make up; what is best to find all instances in any comp of all selected footage items and replace them with a solid? Like is there a function that tells me what comps/layers use the AVItem, or would I loop through all comps and compare all layers to all selected pr...
by Redsandro
September 10th, 2009, 9:35 pm
Forum: Scripts Discussion
Topic: Add project item (solid) to compItem through script
Replies: 5
Views: 11031

Re: Add project item (solid) to compItem through script

Ah now I see it, so I should

Code: Select all

if (mySolid.name == "AL 1920x1080 White") {
         gotSolid = mySolid;
         break;
}
thanks
by Redsandro
September 10th, 2009, 9:37 am
Forum: Scripts Discussion
Topic: Add project item (solid) to compItem through script
Replies: 5
Views: 11031

Add project item (solid) to compItem through script

First I look for my solid like so: // Check for my favourite solid var gotSolid = false; for (i = app.project.numItems; i >= 1; i--) { // Backwards is faster for finding the solid var mySolid = app.project.item(i); if (mySolid.name == "AL 1920x1080 White") { gotSolid = mySolid.id; break; }...
by Redsandro
September 10th, 2009, 8:30 am
Forum: Scripts Discussion
Topic: Running scripts from the command line: Scripting Guide ERROR
Replies: 2
Views: 15142

Re: Running scripts from the command line: Scripting Guide ERROR

Exactly! I never understood it had to do with writing .exe or not! Without .exe it works fine, but with .exe and quotes my After Effects sais "You don't have permission to read this file." I always thought it depended on whether or not After Effects was having one of those days. But appare...
by Redsandro
September 10th, 2009, 8:26 am
Forum: General Scripts Library
Topic: BG Renderer
Replies: 42
Views: 128444

Re: BG Renderer

Ah I see. And personal information is mandatory.
I don't like it but it's only fair I guess!
by Redsandro
September 2nd, 2009, 7:31 am
Forum: General Scripts Library
Topic: BG Renderer
Replies: 42
Views: 128444

Re: BG Renderer

It is a commercial script now?
by Redsandro
August 31st, 2009, 6:37 am
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 281399

Re: TrackerViz for After Effects

Ah I missed it. But great to see a new version!
by Redsandro
August 28th, 2009, 4:15 pm
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 281399

Re: TrackerViz for After Effects

Hey I didn't even know there was a V3. Thanks for the tip. :)

Nab/Hype, why the silent release? I thought there would be a small party here. I'll check it out soon.
by Redsandro
August 28th, 2009, 3:08 pm
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 281399

Re: TrackerViz for After Effects

You can do it without the cornerpin. You need to track only three corners. If you lay out a screen replacement so it fits nicely, you can parent it to a layer that's the pos/rot/scale average of the 3 points. It will work on some types of footage. That's how I did it (even though I did have 4 corner...