Search found 49 matches

by vfxman
May 7th, 2009, 2:07 pm
Forum: Scripts Discussion
Topic: Tint filter - Setting parameters
Replies: 2
Views: 5620

Re: Tint filter - Setting parameters

Thanks, that did it. I was use to setting values for solids and stuff and only needed the three RGB 0-255 value.
by vfxman
May 6th, 2009, 9:18 pm
Forum: Scripts Discussion
Topic: Tint filter - Setting parameters
Replies: 2
Views: 5620

Tint filter - Setting parameters

Having trouble getting the "Map White To" parameter of the Tint filter to setValue correctly. My line of code is like this: myComp.layer(10).Effects.addProperty("Tint"); //add filter myComp.layer(10).property("Effects").property(1).property("Map White To").set...
by vfxman
February 22nd, 2009, 8:25 pm
Forum: Scripts Discussion
Topic: Adding additional output modules...
Replies: 2
Views: 6886

Re: Adding additional output modules...

Thanks Paul, works great. I modified it a little more so it loops through all items in render queue and changes them, which is what I will end up needing for a project next week. As always I appreciate the help. Here's the new code: { var activeItem = app.project.activeItem; // make sure a comp is s...
by vfxman
February 21st, 2009, 9:16 pm
Forum: Scripts Discussion
Topic: Adding additional output modules...
Replies: 2
Views: 6886

Adding additional output modules...

Adding additional output modules without using executeCommand(app.findMenuCommandId("Add Output Module")); I am able to access OM 2 and change it like this... curItem.outputModule(2).applyTemplate(templateName); ...but obviously only when OM index 2 exists to begin with. I was trying to ad...
by vfxman
February 15th, 2009, 5:58 pm
Forum: General Scripts Library
Topic: Duplicate Layer (dockable with entry box)
Replies: 0
Views: 8210

Duplicate Layer (dockable with entry box)

"Duplicator" Assembled by: David Torno (note that I said assembled and NOT created by) :mrgreen: :) This script was the result of testing i've been doing. I was trying to understand how to build AE dockable scripts. While this is NOT the only way to create them, this turned out to be a mor...
by vfxman
February 15th, 2009, 5:42 pm
Forum: Scripts Discussion
Topic: Retrieving user entered value?
Replies: 7
Views: 12822

Re: Retrieving user entered value?

Hey Paul, thanks for the solution and explanation. I understand now why it wasn't finding 'myPanel.butTwo' in the numLayers variable. I feel a little more confident now trying to possibly tackle an update to one of my previous scripts all on my own. We'll see though, lol. Thanks again.
by vfxman
February 14th, 2009, 7:38 pm
Forum: Scripts Discussion
Topic: Retrieving user entered value?
Replies: 7
Views: 12822

Re: Retrieving user entered value?

Yenaphe wrote:

Code: Select all

var numCopies = eval(myPanel.butTwo.value); //you have to use eval to convert a text string to a usable number
Thanks Yenaphe, but it didn't work.
by vfxman
February 14th, 2009, 6:30 pm
Forum: Scripts Discussion
Topic: Retrieving user entered value?
Replies: 7
Views: 12822

Retrieving user entered value?

I am running some experiments and teaching myself AE Dockable ScriptUI building (yes, I know my first script was a dockable panel, but only with Paul's help. :D ) and I can't seem to find the answer/syntax for retrieving a user entered value from an edittext box within the AE script language. I crea...
by vfxman
March 28th, 2008, 8:48 pm
Forum: Scripts Discussion
Topic: Text file to dockable panel
Replies: 14
Views: 22169

Re: Text file to dockable panel

For those looking for the final version, it can be found here...

viewtopic.php?f=3&t=969

This script can be tweaked fairly easily to adjust for a different text document also.
by vfxman
March 27th, 2008, 12:05 pm
Forum: General Scripts Library
Topic: AE CS3 Shortcut Keys reference
Replies: 1
Views: 13746

Re: AE CS3 Shortcut Keys reference

I've had a few people elsewhere prefer a scroll version, so I re-updated it with the original listbox code that Paul worked out for me. You have two options now. :)

http://www.sydefxink.com/aescripts/Shor ... istbox.jsx
by vfxman
March 26th, 2008, 10:01 pm
Forum: General Scripts Library
Topic: AE CS3 Shortcut Keys reference
Replies: 1
Views: 13746

AE CS3 Shortcut Keys reference

Hi all, First off I want to thank Paul Tuersley for all of his help and expertise. I feel that this script is in a form now that is ready for release. This may not clean up your bins, build a cool effect or create any eye candy for that matter, but I believe is a very useful and practical tool. Ever...
by vfxman
March 25th, 2008, 6:46 pm
Forum: Scripts Discussion
Topic: Text file to dockable panel
Replies: 14
Views: 22169

Re: Text file to dockable panel

Ok, I've gotten this to a presentable state. I like the interface and the overall minial space it takes up. The listBox option you used eventually gave me an idea. So the new setup is this... WARNING!!!! If you do run this script, it must be in the "ScriptsUI Panels" folder and launched fr...
by vfxman
March 20th, 2008, 1:08 pm
Forum: Scripts Discussion
Topic: Text file to dockable panel
Replies: 14
Views: 22169

Paul is there a way to put the scroll on the palette itself? (beggers can't be choosers, I know, but it's worth asking) :D

The list box setup works great, but the white background is blaring in a dark interface.
by vfxman
March 18th, 2008, 2:14 pm
Forum: Scripts Discussion
Topic: Text file to dockable panel
Replies: 14
Views: 22169

Re: Text file to dockable panel

Just a freebie script to make a dockable window that loads the current AE shortcuts pref file so artists can have a hot key reference available at all times when working. This would end up including all of those obscure hotkeys that some people use once every blue moon, but have a need for on their ...
by vfxman
March 18th, 2008, 1:13 pm
Forum: Scripts Discussion
Topic: Text file to dockable panel
Replies: 14
Views: 22169

Re: Text file to dockable panel

DOH! :oops: Stupid mistake on my part. I was saving to a copy on the desktop, but running the old code from the ScriptUI folder. :oops: Sorry about that.