Search found 461 matches

by lloydalvarez
June 24th, 2011, 9:50 am
Forum: Scripts Discussion
Topic: Replace Footage File dialog
Replies: 2
Views: 7529

Re: Replace Footage File dialog

Easy/batch footage replacement is one of the main features of Immigration: http://aescripts.com/immigration
by lloydalvarez
June 17th, 2011, 12:39 pm
Forum: Scripts Discussion
Topic: help me please ^^
Replies: 2
Views: 7747

Re: help me please ^^

Once a valid password is entered you should store it somewhere. When you run the script it should only ask for the password only if the one stored one is not valid.
by lloydalvarez
June 17th, 2011, 12:25 pm
Forum: Script requests
Topic: Precompose with controls
Replies: 1
Views: 8022

Re: Precompose with controls

Have you checked out the Smart Pre-Composer?

http://aescripts.com/smart-precomposer/
by lloydalvarez
June 5th, 2011, 11:19 am
Forum: Scripts Discussion
Topic: Is there a way to find out if the project needs to be saved?
Replies: 3
Views: 10039

Re: Is there a way to find out if the project needs to be sa

I've requested it from Adobe many times but unfortunately as of CS5.5 it is still not in the scripting API.

The way Adobe decides what features to implement is based on how many people request it so I would encourage you to request it here: http://adobe.com/go/wish

-Lloyd
by lloydalvarez
May 18th, 2011, 3:40 pm
Forum: Scripts Discussion
Topic: Using app.executeCommand() for New Solid Dialog Box
Replies: 1
Views: 6253

Re: Using app.executeCommand() for New Solid Dialog Box

app.executeCommand() is an unsupported feature and Adobe discourages its use for reasons like you found plus it might not work consistently from version to version. You can create a new solid using the addSolid() method on pg94 of the CS3 scripting guide.

-Lloyd
by lloydalvarez
May 17th, 2011, 2:11 pm
Forum: Script requests
Topic: Auto-> 'Upres Comp' > 'add Filter' > 'add to Render Queue'
Replies: 24
Views: 44769

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

Hi Bob,

That script was replaced with the much more capable BatchProcessor: http://aescripts.com/batchprocessor/

-Lloyd
by lloydalvarez
May 17th, 2011, 1:54 pm
Forum: Scripts Discussion
Topic: How to render a video with images loading externally?
Replies: 1
Views: 6136

Re: How to render a video with images loading externally?

Regardless of whether you can get it to work technically. After Effects' EULA specifically prohibits AE from being run in the way you describe so you would need to get a special license from Adobe to be able to run this service.
by lloydalvarez
May 5th, 2011, 3:47 pm
Forum: Scripts Discussion
Topic: Running a script from the command line (Mac, OS X)
Replies: 1
Views: 7720

Re: Running a script from the command line (Mac, OS X)

Running scripts from the command line is unfortunately not supported on mac.
by lloydalvarez
April 5th, 2011, 4:40 pm
Forum: Script requests
Topic: Add expression to Levels with script
Replies: 4
Views: 12527

Re: Add expression to Levels with script

Then just add it as an expression:

Code: Select all

//Set Values
         levels.property(6).expression='1/thisComp.layer("GAMMA DOWN")("Effects")("Levels (Individual Controls)")("Gamma")';
Otherwise you need to calculate the actual value and set that.

-Lloyd
by lloydalvarez
April 4th, 2011, 1:01 pm
Forum: Expressions Tutorials
Topic: Use sampleImage() to create a color picker
Replies: 8
Views: 113573

Re: Use sampleImage() to create a color picker

You would need to use some for loops to scan every pixel in the image which will take for ever using sampleImage(). I think this is a job better suited for a PixelBender plugin.

-Lloyd
by lloydalvarez
April 4th, 2011, 12:59 pm
Forum: Script requests
Topic: Add expression to Levels with script
Replies: 4
Views: 12527

Re: Add expression to Levels with script

What are you trying to set the value to? You need to put the value in the SetValue parenthesis. Currently you have this: //Set Values levels.property(6).setValue(thisComp.layer("GAMMA DOWN")("Effects")("Levels (Individual Controls)")("Gamma")); But it should b...
by lloydalvarez
April 4th, 2011, 12:02 pm
Forum: Script requests
Topic: Turn off visibility of all guide layers?
Replies: 2
Views: 9046

Re: Turn off visibility of all guide layers?

This script will go through all the comps in the project and turn the visibility off on any guide layers. for (var h=1; h <= app.project.numItems; h++) if (app.project.item(h) instanceof CompItem) for (var i=1; i <= app.project.item(h).numLayers; i++) if (app.project.item(h).layer(i).guideLayer) app...
by lloydalvarez
April 1st, 2011, 2:37 pm
Forum: Script requests
Topic: is there a solution for this?
Replies: 2
Views: 8935

Re: is there a solution for this?

You can just add an expression to the opacity channel for each layer you want to show and tie that to a slider in the parent comp. For example if the parent comp named "Main Comp" has an expression control slider on a control layer named "Control Null" then the expression on the ...