Search found 115 matches

by Redsandro
March 20th, 2009, 10:17 am
Forum: Scripts Discussion
Topic: [?] Clone and remove trackers - not working
Replies: 9
Views: 13506

Re: [?] Clone and remove trackers - not working

Please someone with more knowledge teach me a trick. Because I am thinking it is impossible. I worked around the above limitation by putting the clones in an array: // Create clones var sourceProp = Array(selPropNo); // Array of clones sourceProp[0] = selProp[p].duplicate(); // After first clone, or...
by Redsandro
March 19th, 2009, 6:02 pm
Forum: Scripts Discussion
Topic: [?] Clone and remove trackers - not working
Replies: 9
Views: 13506

Re: [?] Clone and remove trackers - not working

You were right. I didn't notice it worked because a new tracker was copied, all points were deleted, and the empty tracker got auto-removed so nothing seemed to change. That error you mentioned, I don't know why it occurs (yet) because it duplicates exactly wat was correctly duplicated in the first ...
by Redsandro
March 19th, 2009, 5:12 pm
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 267387

Re: TrackerViz for After Effects

Another feature request, for I think everyone likes to track multiple TrackPoints at the same time: If you have Trackers selected which have multiple TrackPoints (TrackerViz wants trackers with a single Pt), it would be neat if all those points were automatically used as an "Average Position&qu...
by Redsandro
March 19th, 2009, 5:08 pm
Forum: Scripts Discussion
Topic: [?] Clone and remove trackers - not working
Replies: 9
Views: 13506

Re: [?] Clone and remove trackers - not working

I thought all groups were sort of arrays. Anyway, using that syntax I still get
Unable to execute at line [you know]. Object is invalid.
by Redsandro
March 19th, 2009, 12:05 pm
Forum: Scripts Discussion
Topic: [?] Clone and remove trackers - not working
Replies: 9
Views: 13506

[?] Clone and remove trackers - not working

Hi, I am trying to make a script that takes a (selected) Tracker full of Tracker Points and makes multiple Trackers with a single Track Point each out of it. This is because I like to track stuff at the same time, but TrackerViz wants tracks in separate trackers. However, when I want to remove all T...
by Redsandro
March 19th, 2009, 9:44 am
Forum: Paul Tuersley's Scripts
Topic: pt_Panorama
Replies: 19
Views: 109152

Re: Make Panorama

The whole www.btinternet.co.uk domain is down from my location. I think the DNS servers are blocked in a big portion of the world. This could be a simple mistake, or one of the users on that site managed to get the IP blacklisted. Here's a fix: Open Windows' hosts file with notepad, e.g. press [Win]...
by Redsandro
February 16th, 2009, 6:09 pm
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 267387

Re: TrackerViz for After Effects

These bugs will be fixed in the next version. Thanks. :) Could you elaborate on this, or provide a simple screenshot to illustrate your purpose. Sure. Imagine having two layer tracks (Tracker 1, Tracker 2) and with those trackers selected, you make an expression based average track (Tracker 4). The...
by Redsandro
February 16th, 2009, 6:58 am
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 267387

Re: TrackerViz for After Effects

So probably not an issue for you, but now that I have precomped a lot of previously tracked stuff, my opinion is that a script break when you move the source layer away makes more sense than a script break when you move the source WITH the trackers away. Therefore I would change comp(name) back to t...
by Redsandro
February 14th, 2009, 9:54 am
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 267387

Re: TrackerViz for After Effects

Currently, trackerdata is linked to the layer that holds the data by using code like this:[code]L = thisComp.layer("layerName");[/code] If this could be changed to:[code]L = comp("compName").layer("layerName");[/code]we make manual editing more intuitive in cases where...
by Redsandro
February 13th, 2009, 11:38 pm
Forum: Scripts Discussion
Topic: Replace words in expressions - script doesn't work
Replies: 6
Views: 19601

Re: Replace words in expressions - script doesn't work

I wasted too much time manually editing ocurrances of thisComp , so I took another look at my script. Turns out there is no way (afaik) to traverse all properties, but you can traverse selected properties. So in case anyone sees how this can be handy, here it is: (also as attachment). /********** * ...
by Redsandro
February 13th, 2009, 3:51 pm
Forum: General Scripts Library
Topic: TrackerViz for After Effects
Replies: 69
Views: 267387

Re: TrackerViz for After Effects

AE CS3 TV 2.1 Averaging tracker positions on a layer called "Something Super.seq" whilst the layer has the same name as the footage item, which is an image sequence-> After Effects warning: Bad argument: couldn't find layer named 'Something Super.seq' Expression disabled. Error occurred at...
by Redsandro
December 17th, 2008, 10:32 am
Forum: Script requests
Topic: Graph-editor curve to Keyframes
Replies: 2
Views: 7916

Re: Graph-editor curve to Keyframes

It works with an unrelated expression?
That would be great. Thanks.
I'll try it out next time I'm working on the project!
by Redsandro
December 17th, 2008, 9:12 am
Forum: Script requests
Topic: Graph-editor curve to Keyframes
Replies: 2
Views: 7916

Graph-editor curve to Keyframes

The percent property from the reshape filter is not responsive to non-lineair keyframe interpolation in CS3. I can make the curve as nice as I want, the reshaping will still happen lineair. A workaround would be to convert all curves for the percentage property keyframes. But one added keyframe chan...
by Redsandro
December 17th, 2008, 8:59 am
Forum: General Scripts Library
Topic: Tracker2Mask: new tracker-assisted rotoscoping tool
Replies: 18
Views: 58201

Re: Tracker2Mask: new tracker-assisted rotoscoping tool

Sounds awesome.

A sidenote, not directly related to the script, I haven't tried it yet.

How come the second video is not downloadable? (The first one is.)
Didn't you upload .mp4?

I like portability, download now watch later on a device without internet.
by Redsandro
December 11th, 2008, 8:13 am
Forum: Scripts Discussion
Topic: Replace words in expressions - script doesn't work
Replies: 6
Views: 19601

Replace words in expressions - script doesn't work

Hi, I want a script that changes all instances of thisComp to comp("currentCompName") inside all expressions of selected layers. I drafted this, but somehow it doesn't work but doesn't give me an error either. Also, after running, there's nothing to 'undo.' Can someone with a keener eye lo...