Search found 11 matches
- December 12th, 2008, 12:29 am
- Forum: Scripts Discussion
- Topic: rd: Script Launcher as a DropDownList - Help
- Replies: 0
- Views: 8562
rd: Script Launcher as a DropDownList - Help
I really like Jeff's "rd: Script Launcher" script for quick access to some of my more random scripts I've downloaded and made. However I'm wanting to go in a different direction based off of the code. Instead of using a UI listbox option in the res Group, I changed it to a UI DropDownList ...
- November 14th, 2008, 10:01 am
- Forum: Script requests
- Topic: Font search
- Replies: 22
- Views: 73863
Re: Font search
I can't wait until my AE CS4 upgrade gets here so I can try that new font scripting stuff out! That would be really handy at my job.
- August 23rd, 2008, 12:33 pm
- Forum: Scripts Discussion
- Topic: ScriptUI DropDownList and onChange
- Replies: 2
- Views: 14960
Re: ScriptUI DropDownList and onChange
Here is a snippet of my code on how I got it to work for one of my DropDownList scripts: pal.grp = pal.add(res); pal.layout.layout(true); pal.grp.minimumSize = pal.grp.size; pal.layout.resize(); pal.onResizing = pal.onResize = function () {this.layout.resize();} pal.grp.header.help.onClick = functio...
- July 29th, 2008, 10:06 pm
- Forum: Scripts Discussion
- Topic: Open composition in the timeline via scripting?
- Replies: 5
- Views: 60431
Re: Open composition in the timeline via scripting?
I was looking at the Creative Cow forums tonight and noticed a post by the user "rich helvey" asking for a very similar functionality: http://forums.creativecow.net/thread/227/10710 He found an undocumented workaround: ramPreviewTest() It worked when I inserted it in the //-----------Begin...
- July 21st, 2008, 11:06 pm
- Forum: Scripts Discussion
- Topic: Open composition in the timeline via scripting?
- Replies: 5
- Views: 60431
Re: Open composition in the timeline via scripting?
Thanks Paul for your reply!
I will go try the preset option you presented.
I will go try the preset option you presented.
- July 18th, 2008, 1:50 pm
- Forum: Scripts Discussion
- Topic: Open composition in the timeline via scripting?
- Replies: 5
- Views: 60431
Re: Open composition in the timeline via scripting?
Is this do able or am I just not explaining what I need the script to do properly?
Thanks!
Thanks!
- July 16th, 2008, 12:06 am
- Forum: Scripts Discussion
- Topic: Open composition in the timeline via scripting?
- Replies: 5
- Views: 60431
Open composition in the timeline via scripting?
Is there a way to open a composition into an empty timeline via scripting without manually double-clicking the composition in the project window in After Effects? My current script below does everything I need it to do in the "Begin Create Faux Logo Comp" section. But won't execute the &qu...
- July 11th, 2008, 9:38 pm
- Forum: Scripts Discussion
- Topic: Drop Down List Populates UI
- Replies: 1
- Views: 8399
Re: Drop Down List Populates UI
7/18/08 Edit:
After alot of digging, reading, and coding I finally have a working script for this dynamic drop down interface, it's really nice!
If anyone is interested I can post part of the code.
After alot of digging, reading, and coding I finally have a working script for this dynamic drop down interface, it's really nice!
If anyone is interested I can post part of the code.
- July 6th, 2008, 2:47 pm
- Forum: Scripts Discussion
- Topic: Drop Down List Populates UI
- Replies: 1
- Views: 8399
Drop Down List Populates UI
There is an example script in the ScriptUI section of the Bridge Javascript PDF for creating dynamic content (page 81 & 82), it's as follows: res = "dialog { \ whichInfo: DropDownList { alignment:'left' }, \ allGroups: Panel { orientation:'stack', \ info: Group { orientation: 'column', \ na...
- July 1st, 2008, 8:38 pm
- Forum: Scripts Discussion
- Topic: app.executeCommand(...) List - work in progress (for CS3)
- Replies: 16
- Views: 238268
Re: app.executeCommand(...) List - work in progress (for CS3)
I just tried the alert(app.findMenuCommandId("Save frame as...")); and it gave me 0 (zero) as the resultant in the alert. Sounds like the same problem as I have above with the "Quicktime Movie..." command. Some commands I guess just aren't directly accessible in scripting current...
- June 15th, 2008, 9:42 pm
- Forum: Scripts Discussion
- Topic: app.executeCommand(...) List - work in progress (for CS3)
- Replies: 16
- Views: 238268
Re: app.executeCommand(...) List - work in progress (for CS3)
Does anyone know why when I use the following code (to invoke the "File|Export|Quicktime Movie..." command): app.executeCommand(app.findMenuCommandId("Quicktime Movie...")); I don't get any result? All of the other File|Export commands can be called. Such as app.executeCommand(ap...