Search found 321 matches

by byronnash
January 17th, 2005, 9:46 am
Forum: Scripts Discussion
Topic: undo
Replies: 4
Views: 13369

Sorry, nothing comes to mind on that. You are wanting to undo a normal AE action that was done before the script was launched? I'll let you know if I run across anything. This would be a good application for a scriptlistener like Photoshop has.
by byronnash
January 17th, 2005, 7:33 am
Forum: Scripts Discussion
Topic: undo
Replies: 4
Views: 13369

When saying undo, do you mean you want to be able to undo your script?
If so, just put these lines and the beginning and end of your script.

app.beginUndoGroup("Your undo text here");
//put your script in between here
app.endUndoGroup();
by byronnash
January 12th, 2005, 8:15 am
Forum: General Scripts Library
Topic: Compify with Video Love
Replies: 2
Views: 14182

Glad to see someone found a use for my [sometimes obscure] scripts. I'll have to give the "Video Love" a try.
by byronnash
January 10th, 2005, 5:30 am
Forum: Scripts Discussion
Topic: Quotes within quotes
Replies: 4
Views: 11850

Thanks guys. I was able to use Impudent's advice on some lines. I have run into something that has me stumped though. I need a line to be written to a file that looks like this blah blah "Company Name" blah blah "Company Name" is a variable stored in the prefs my current script l...
by byronnash
January 7th, 2005, 8:19 am
Forum: Scripts Discussion
Topic: Quotes within quotes
Replies: 4
Views: 11850

Quotes within quotes

I am writing a script that writes an applescript file. I borrowed some lines from Impudent's Render and Shutdown script. In the writeLn part, how can I write a line that needs to have quotes in it? For example if I wanted to write a script line that was "Hello" I would do: writeLn("&q...
by byronnash
December 21st, 2004, 1:26 pm
Forum: Scripts Discussion
Topic: declaring arrays
Replies: 5
Views: 11044

I'm no expert here but I'll tell you what I usually do. I don't think you have to spell out what kind of array you want. you can just say: var myArray = new Array(); //makes an empty array myArray[0]= 7; //add a single value to the first slot in the array myArray[1]= "Hello World"; //add s...
by byronnash
December 1st, 2004, 1:57 pm
Forum: Scripts Discussion
Topic: export caméra keyframes to excel?
Replies: 1
Views: 7962

Take a look at the OHM stuff on this site.
http://mindthink.de/
by byronnash
November 29th, 2004, 11:21 am
Forum: Scripts Discussion
Topic: Adding meta-data to quicktime files
Replies: 14
Views: 29103

Yeah, I found some good info on the Apple site after I posted that. They have some applescripts that add annotations to quicktimes. I've never used Applescript since I'm on a PC but I'm going to see if I can get it to work on one of the Macs here. I also found this. "The MacOS.OSA object allows...
by byronnash
November 29th, 2004, 7:01 am
Forum: Scripts Discussion
Topic: Adding meta-data to quicktime files
Replies: 14
Views: 29103

Adding meta-data to quicktime files

Does anyone know of a way to write data into a quicktime file like, Author and copyright etc... ? I would like to be able to do this with scripting. I was wondering if you could accomplish this with AppleScript and maybe call the AppleScript from within AE?
by byronnash
November 11th, 2004, 8:20 am
Forum: Scripts Discussion
Topic: Calling and evaluating scripts on a Mac
Replies: 0
Views: 7844

Calling and evaluating scripts on a Mac

I am trying to set up a script that calls a custom pallete. I want to have a small script that resides in the startup folder and calls another script that actually creates the palette. I want to be able to adjust and update the palette without having to copy the script to all my artists here. I can ...
by byronnash
November 5th, 2004, 7:58 am
Forum: Scripts Discussion
Topic: Convert Audio to Keyframes
Replies: 1
Views: 7818

Convert Audio to Keyframes

Is there a way to Convert Audio to Keyframes via scripting?
by byronnash
November 1st, 2004, 12:32 pm
Forum: General Scripts Library
Topic: Compify
Replies: 1
Views: 11682

Just a bump to let people know that the script is finished.
by byronnash
October 27th, 2004, 9:10 am
Forum: Scripts Discussion
Topic: Branching Function
Replies: 1
Views: 7508

Branching Function

I'm trying to get a script to work that changes the length of all comps under a selected comp. The problem is that I have a recursive function to go through all the layers and find the comps. It works fine down one branch of my comp, but if I have two precomps in one comp, it doesn't get to the othe...
by byronnash
October 26th, 2004, 11:58 am
Forum: Scripts Discussion
Topic: Compify
Replies: 6
Views: 14712

I think I have COMPIFY.jsx working now. The cancel button doesn't do anything and it reports the wrong number of comps. (Any Ideas?) Thanks for your help. That's very strange that the dialog acts funny just because you don't have a Cancel button. I'm still getting my head around how to do the cancel...
by byronnash
October 25th, 2004, 7:29 am
Forum: Scripts Discussion
Topic: Compify
Replies: 6
Views: 14712

That's very strange. No I haven't figured it out and have been having trouble on my dialogs lately. What do you put in for a cancel command? I'm getting stuck on what the method is to jump out of a function when you click on cancel.

Thanks Paul.