Search found 56 matches

by ernpchan
June 9th, 2011, 10:04 am
Forum: Scripts Discussion
Topic: List of Recent Projects
Replies: 0
Views: 5130

List of Recent Projects

Can you access the list of recent projects through the scripting language?

Thanks.
by ernpchan
June 6th, 2011, 10:09 am
Forum: Scripts Discussion
Topic: Render Settings template
Replies: 2
Views: 8087

Render Settings template

Is there a way to check if a specific template is applied to Render Settings in the queue? I can see that we can applyTemplate and saveAsTemplate but I don't see anything to get or check the name of the template. Or is there a way to see if "Skip existing files" is enabled in the Render Se...
by ernpchan
June 6th, 2011, 10:07 am
Forum: Scripts Discussion
Topic: Get all effects used in project
Replies: 6
Views: 11192

Re: Get all effects used in project

Thanks Paul.

Someone over on CGTalk posted a solution to this so I'm good.
by ernpchan
June 5th, 2011, 6:59 pm
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

Thanks Lloyd. I added my voice to this request.
by ernpchan
June 5th, 2011, 11:12 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

This post is old but I'm curious if there was an answer to this.

Thanks.
by ernpchan
June 1st, 2011, 1:00 pm
Forum: Scripts Discussion
Topic: Get all effects used in project
Replies: 6
Views: 11192

Re: Get all effects used in project

I've written this script that does it: http://aescripts.com/pt_effectsearch/ Thanks Paul. Is there a way to access your script through another script? I want to search my comp for specific plug-ins to determine which render group on our network to use. It looks like your script can handle the searc...
by ernpchan
May 31st, 2011, 8:38 pm
Forum: Scripts Discussion
Topic: Get all effects used in project
Replies: 6
Views: 11192

Re: Get all effects used in project

This looks to be more about adding an effect. I'd like to see what effects have already been applied in a project.
by ernpchan
May 31st, 2011, 6:16 pm
Forum: Scripts Discussion
Topic: Get all effects used in project
Replies: 6
Views: 11192

Get all effects used in project

Is it possible to get all the effects used in a project through a script?
by ernpchan
September 16th, 2010, 10:34 am
Forum: General Scripts Library
Topic: Quick effects palette
Replies: 43
Views: 146199

Re: Quick effects palette

Good to know. I guess if my version of the script breaks in the future I'll have to revisit it.
by ernpchan
September 16th, 2010, 9:41 am
Forum: General Scripts Library
Topic: Quick Interpret Palette
Replies: 3
Views: 15322

Re: Quick Interpret Palette

You could modify one of the functions with this:

app.project.item(idx).mainSource.conformFrameRate=25

Or change your default import fps settings. You could also change the settings of one sequence and remember the interpretation and then apply it to the rest.
by ernpchan
September 16th, 2010, 9:37 am
Forum: General Scripts Library
Topic: Quick effects palette
Replies: 43
Views: 146199

Re: Quick effects palette

Instead of calling the plug-in, call the command id of what you want to execute.

So to add an adjustment layer your function would look like this:

function AddAdjustmentLayer()
{
app.executeCommand(2279);
}