Search found 158 matches

by Atomic
September 12th, 2007, 5:36 am
Forum: Scripts Discussion
Topic: Japanese scripters are better informed
Replies: 15
Views: 28878

Have you looked in the PDF scripting guide provided by Adobe?

The site you mention simply looks like an export of that document.
by Atomic
September 4th, 2007, 9:33 am
Forum: Script requests
Topic: Does the SourceText can be linked to a text (.txt) file?
Replies: 2
Views: 13653

Usage: 1.) Open After EFfects. 2.) Run JSX. 3.) Browse to your plain ascii text document. It will create a comp for you with a single text layer that will change text as the playback head moves through the timeline. NOTE: It is not really linked to the text file. It will have all the text from the f...
by Atomic
August 30th, 2007, 5:50 am
Forum: Animation presets Library
Topic: Lightning Preset v1.0
Replies: 2
Views: 48215

The pasword "scaleitdown" no longer works.
by Atomic
August 28th, 2007, 7:58 am
Forum: Expression Discussion
Topic: 3d flip cardboard
Replies: 2
Views: 9957

That is what the card dance effect is all about. Read up on it. Here is my workflow. Go into photoshop and create a 320x240 document. Drop all your images into that document as layers. Create a lot of layers, like around 32 or more. Make all the layers the same size as the document (320x240 or pick ...
by Atomic
August 14th, 2007, 5:34 am
Forum: Expression Discussion
Topic: To liven up band of the road
Replies: 2
Views: 8209

I always find a banjo livens up the band.

Try adding a banjo to your comp. :wink:
by Atomic
August 14th, 2007, 5:33 am
Forum: Expression Discussion
Topic: I need to paste a motion path into paint and have it draw
Replies: 2
Views: 9468

http://maltaannon.com/ this site does not go anywhere?
by Atomic
August 9th, 2007, 5:43 am
Forum: Expression Discussion
Topic: auto orient expression?
Replies: 2
Views: 9380

Nice,

I'm going to have to try that out.
by Atomic
August 9th, 2007, 5:40 am
Forum: Script requests
Topic: Create Layer Markers from XML File & render these seqs.
Replies: 2
Views: 8175

You could take a look at these scripts I found on this site. Here is one that has some code for creating a marker. http://aenhancers.com/viewtopic.php?t=543 { // define variables; var myMarker, currentLayer, chapterString; // assign currently selected item to a variable; var activeItem = app.project...
by Atomic
August 9th, 2007, 5:27 am
Forum: Expression Discussion
Topic: Masks and Layer Controlls
Replies: 4
Views: 13914

Javascript does support try and catch. I have only used that in jsx, however, not experssions. But it may be worth a try.

Code: Select all

try
{
//Access your layer code goes here
}
catch (error)
{
//If an error is thrown.
alert (error.description)
}
http://www.w3schools.com/js/js_try_catch.asp
by Atomic
August 3rd, 2007, 5:35 am
Forum: Scripts Discussion
Topic: Item : by name ?
Replies: 9
Views: 16317

So I guess to scan the project window you could...

Code: Select all

n = app.project.numItems;
for (m=1; m<n; m++;)
{
if (app.project.item(m).name =="Label I am Searching For")
{
//I have found an item in the project window by name.
}
}
by Atomic
August 2nd, 2007, 9:19 am
Forum: Scripts Discussion
Topic: Item : by name ?
Replies: 9
Views: 16317

So,

Does app.project have a count?
by Atomic
August 2nd, 2007, 9:01 am
Forum: Scripts Discussion
Topic: Item : by name ?
Replies: 9
Views: 16317

You can reference by name, like so... var myComp = app.project.activeItem; //NOTE comp must be selected in the project window. var AudioAmplitudeLayer = myComp.layer("Audio Amplitude"); Audio Amplitude is the name of a layer in my comp. Now you can refference properties of the layer like s...
by Atomic
July 31st, 2007, 1:47 pm
Forum: Scripts Discussion
Topic: Create markers from gaps in audio file
Replies: 2
Views: 6999

I have come up with this: { // Create project if necessary var proj = app.project; if(!proj) proj = app.newProject(); try { temp = "The Audio Amplitude layer needs to be generated by After Effects prior to running this script. (Right-Click On Audio File in comp, choose Keyframe Assistant, Conve...
by Atomic
July 31st, 2007, 11:58 am
Forum: Scripts Discussion
Topic: Create markers from gaps in audio file
Replies: 2
Views: 6999

Sorry,

I just noticed this should be posted in the expression forum not scripts.

Feel free to move it.

I am looking for a script solution, not an expression solution. :roll:
by Atomic
July 31st, 2007, 11:20 am
Forum: Scripts Discussion
Topic: Create markers from gaps in audio file
Replies: 2
Views: 6999

Create markers from gaps in audio file

Hi All,

Just wondering if anyone knows how to create markers based upon the pauses in an audio file.

Mainly I am working with voiceover that has silence between sections and I wanted markers generated at the start of a talking point.

Thanks