Search found 86 matches

by vidpat
January 25th, 2006, 9:57 pm
Forum: General Scripts Library
Topic: Volumetric Light
Replies: 4
Views: 20307

Volumetric Light

I have added a script to the tutorial on volumetric lighting without plug-ins. The script mimics the procedure described, creating and rigging effects to simulate volumetric cones of light for the selected Light Layers. Usage: Download VolumeLight.jsx in to After Effects' scripts folder. Create one ...
by vidpat
January 25th, 2006, 1:28 pm
Forum: Scripts Discussion
Topic: borderStyle
Replies: 1
Views: 6769

I've never been able to get borderStyle to work, either. Maybe in AE7?
by vidpat
January 23rd, 2006, 9:25 pm
Forum: Scripts Discussion
Topic: AE 7
Replies: 10
Views: 20565

I presume icon buttons are buttons that can contain an image, rather than (or in addition to) text. I imagine that system.callSystem() takes a string argument that is a command to be executed by the system's command interpreter, as if it were typed at the system shell. Previously, as Impudent allude...
by vidpat
January 18th, 2006, 11:39 pm
Forum: Script requests
Topic: Questions about listbox and dropdownlist...
Replies: 2
Views: 8997

The script UI API doesn't expose any such listbox functionality as of AE 6.5. However, it seems that this was added for AE 7.

Take a look at UIChooser.jsx (http://www.aenhancers.com/viewtopic.php?t=128) for my approach to solving this problem in 6.5.
by vidpat
January 18th, 2006, 2:49 pm
Forum: Scripts Discussion
Topic: AE 7
Replies: 10
Views: 20565

Oh my, list controls, scheduleTask()... my mouth is watering.

Aside from the ESTK and auto-rewriting named references in expressions, are there any other new scripting (or expression) features that may prompt me to upgrade now?
by vidpat
January 17th, 2006, 12:18 am
Forum: Scripts Discussion
Topic: Unofficial Poll: who else is using jEdit?
Replies: 13
Views: 21331

It looks like the choice is less of an issue now. AE7 has an integrated script editing environment. The syntax highlighting seems rather basic, though.
by vidpat
January 17th, 2006, 12:09 am
Forum: Scripts Discussion
Topic: Can you test if an image is "off screen"?
Replies: 2
Views: 8237

It's been a while since I've looked at it, but I think you could use an expression or script in conjunction with the TextInfo plug-in I wrote (see Determining Width and Height of a Text Layer ). Despite its name, it should provide information (as wireable effect properties) about the visible portion...
by vidpat
January 16th, 2006, 6:16 pm
Forum: Scripts Discussion
Topic: Unofficial Poll: who else is using jEdit?
Replies: 13
Views: 21331

I've enjoyed using TextPad on Windows and Emacs under Linux for years. However, I've been meaning to try jEdit for some time. The next time I have a lull in my work, I'll give it a go. Does jEdit have an IntelliSense-like autocompletion feature, as in Visual Studio? Even if it doesn't reflect the st...
by vidpat
December 3rd, 2005, 10:45 am
Forum: Expression Discussion
Topic: Can't seem to use PropertyValueType
Replies: 1
Views: 8371

PropertyValueType is the object that contains the constants where as propertyValueType is the property of Property objects. I'm not certain these notions are available to expressions, likely just scripts. However, a switch statement is often useful for these sort of comparisons as in: var retval; sw...
by vidpat
September 2nd, 2005, 1:45 pm
Forum: Expressions Library
Topic: Create a timecode with expressions
Replies: 16
Views: 109670

The following expression will count an increasing monotonic sequence: var nFrames = 30; var startValue = 0; timeToFrames() / nFrames + startValue; The variables are for your convenience. startValue is the number from which to start counting. nFrames is the number of frames for which each value will ...
by vidpat
August 29th, 2005, 5:52 pm
Forum: Script requests
Topic: Freelancer's Best Friend
Replies: 3
Views: 11374

The AE preferences file should contain all of the items you want (i.e. Output Modules, Workspaces). There may be some items specific to a particular installation that may cause difficulties. In my experience, however, copying the preferences file between machines generally works. An AE script could ...
by vidpat
August 18th, 2005, 5:55 pm
Forum: Script requests
Topic: Ftp after render
Replies: 20
Views: 53509

Possible problem?

I am curious if anyone has had problems running these scripts on a Mac. Specifically, I have had a report that, on a Mac, at most 64KB of a file has been transfered. On a PC, the entire file is transferred. Has anyone else run across this problem or have you been successful in sending more than 64KB...
by vidpat
August 9th, 2005, 10:13 pm
Forum: General Scripts Library
Topic: Create Shapes: Regular Polygons and Stars
Replies: 0
Views: 15209

Create Shapes: Regular Polygons and Stars

The script below generates a mask shape for the selected layer that may be a regular (or stretched) polygon or a star shape. Parameters include number of sides or points, rotation, and rounding. This script is dependent upon: UILayout_13.jsx Usage: Simply copy the script in to After Effects' scripts...
by vidpat
August 9th, 2005, 9:48 pm
Forum: General Scripts Library
Topic: Pre-comp to layer duration
Replies: 17
Views: 96082

Alex,
Have you had any luck getting PrecompToDuration to run? I've been looking through UILayout and haven't come across anything that could cause the problem.
Peter
by vidpat
August 8th, 2005, 12:32 pm
Forum: Script requests
Topic: creating a trackable mask
Replies: 9
Views: 22202

I had started working on a script to assist in tracking mask vertices. I ended up taking a different approach for the project as it is difficult to manage and associate all such data through scripting. One particular drawback is the inability to access mask vertices through expressions. The suggeste...