Search found 203 matches

by nab
April 13th, 2008, 6:25 pm
Forum: Script requests
Topic: Track Averging alteration?
Replies: 52
Views: 95860

Re: Track Averging alteration?

I've added a larger icon and I've changed the way mask keyframes are created. Instead of choosing the frame rate, you specify the Keyframe Rate which is the frequency at which keyframes are created. The default value is 1, meaning that a keyframe is created at every frame (no matter what the composi...
by nab
April 8th, 2008, 12:16 am
Forum: Script requests
Topic: Track Averging alteration?
Replies: 52
Views: 95860

Re: Track Averging alteration?

New version available here: TrackerViz.zip I've added an icon button at the top of the palette and corrected one or two things in the code... Your icon is great but a little too big, if you don't like mine, you could send me your creation as a 240x26 png file. Shape to Layers and Layers to Shape fun...
by nab
April 4th, 2008, 5:19 pm
Forum: General Scripts Library
Topic: Export AE Camera to Maya
Replies: 30
Views: 77502

export Cam

there wasn't a big speed increase because writing the .ma file (what your code is doing, basically) wasn't what took that long not exactly, it retrieves the data and writes them to file which is basically what an export script does. it's the code I'm using to imitate the "Covert Expression to ...
by nab
March 29th, 2008, 8:14 pm
Forum: General Scripts Library
Topic: Export AE Camera to Maya
Replies: 30
Views: 77502

Re: Export AE Camera to Maya

You could store data as strings since the end result is written into a file. Here is a squeleton that you could use as a basis... (by the way, in CS3 there is a progressbar ui element) function DataContainer() { var data = new Object(); data.xpos = ""; data.ypos = ""; data.zpos =...
by nab
March 29th, 2008, 1:01 pm
Forum: Script requests
Topic: make proxy of all files selected
Replies: 12
Views: 22983

Re: make proxy of all files selected

Try this new version (AE CS3 required): createProxies.zip
Usage:
1. select comps or footages in the project panel
2. specify render settings
3. click Proceed
by nab
March 28th, 2008, 7:49 pm
Forum: Script requests
Topic: make proxy of all files selected
Replies: 12
Views: 22983

Re: make proxy of all files selected

I'll look into it this week-end, and post an update version..
by nab
March 28th, 2008, 5:45 pm
Forum: General Scripts Library
Topic: Export AE Camera to Maya
Replies: 30
Views: 77502

Re: Export AE Camera to Maya

Couple of remarks: . the second parameter of valueAtTime should be true or false (true=preExpr), not an array of the dimension of the property (that's why you get NaN for some values). . if you want to speed up things, you should consider looping through the comp frames only once (retrieving all dat...
by nab
March 26th, 2008, 4:25 pm
Forum: Script requests
Topic: reposition anchor point
Replies: 11
Views: 25264

Re: reposition anchor point

Website problem solved :D

here is the new version of this script: RepositionAnchorPoint.zip
by nab
March 25th, 2008, 11:49 pm
Forum: Script requests
Topic: Lock property script
Replies: 9
Views: 19102

Re: Lock property script

Thanks Jonas. I'll try to find a solution in the next few days...
by nab
March 25th, 2008, 11:39 pm
Forum: Script requests
Topic: reposition anchor point
Replies: 11
Views: 25264

Re: reposition anchor point

yes...check your PM :wink:
by nab
March 22nd, 2008, 4:46 pm
Forum: Script requests
Topic: Track Averging alteration?
Replies: 52
Views: 95860

Re: Track Averging alteration?

About parenting: . create a new comp and create a 100x100 solid. . change its position, scaleY, and rotation (and also its anchorPoint since the script also modifies the anchorPoint). . set a keyframe for these 3 properties. . move forward, say 100 frames, and set new position, new scale and new rot...
by nab
March 18th, 2008, 5:54 pm
Forum: Script requests
Topic: Auto-> 'Upres Comp' > 'add Filter' > 'add to Render Queue'
Replies: 24
Views: 44361

Re: Auto-> 'Upres Comp' > 'add Filter' > 'add to Render Queue'

Hey Lloyd, if you want you can choose the default folder to open, which is useful for script like yours. Example for Windows: var presetFolder = new Folder("C:/Program Files/Adobe/Adobe After Effects CS3/Support Files/Presets"); var myPreset = presetFolder.openDlg("Select Animation Pr...
by nab
March 16th, 2008, 12:13 am
Forum: Script requests
Topic: reposition anchor point
Replies: 11
Views: 25264

Re: reposition anchor point

Here is the modified version (in fact 100% rewritten): RepositionAnchorPoint.zip For mask bounding box, there are two options which are illustrated below. - Mask Bounding Box (AE) includes Bezier handles in the bounding box - Mask Bounding Box (Nab) uses more advanced calculations to determine the '...
by nab
March 15th, 2008, 12:54 pm
Forum: Script requests
Topic: reposition anchor point
Replies: 11
Views: 25264

Re: reposition anchor point

that should be doable, I'll give it a try...
by nab
March 15th, 2008, 12:47 pm
Forum: Script requests
Topic: Track Averging alteration?
Replies: 52
Views: 95860

Re: Track Averging alteration?

Hey hype. What I mean by "parenting is supported" is that if the layer containing the selected trackers (in trackers mode) or the selected layers (in layers mode), are parented to other layers, the script takes this into account and calculates the appropriate values. What you describe abov...