Search found 461 matches

by lloydalvarez
May 25th, 2006, 9:36 am
Forum: Scripts Discussion
Topic: image in UI window?
Replies: 2
Views: 8251

image in UI window?

anybody know if it is possible to put an image in a UI window?
by lloydalvarez
May 23rd, 2006, 3:15 pm
Forum: Scripts Discussion
Topic: AE <--> Illustrator
Replies: 3
Views: 10877

AE <--> Illustrator

We are writing some scripts that send text to illustrator to be edited and then we read it back in AE. We've gotten the script to work, however, illustrator is requiring attention before it executes it's share of the script. There are no dialog boxes or anything, we simply need to switch to Illustra...
by lloydalvarez
May 22nd, 2006, 9:04 am
Forum: Scripts Discussion
Topic: Secondary UI Window?
Replies: 1
Views: 6800

Secondary UI Window?

Is there a way to launch a second "child" UI window based on input the primary window?
by lloydalvarez
May 22nd, 2006, 9:03 am
Forum: Scripts Discussion
Topic: Edit Original
Replies: 1
Views: 6816

Edit Original

Is there a way to invoke "Edit Original" in a script?
by lloydalvarez
May 19th, 2006, 11:44 pm
Forum: Expression Discussion
Topic: date?
Replies: 8
Views: 18223

aha! i was going to tell you about the weird error that AE gives, but i figured you'd see it yourself. thanks for figuring it out, i am sure it would have taken me much longer!

lloyd
by lloydalvarez
May 19th, 2006, 12:14 pm
Forum: Expression Discussion
Topic: date?
Replies: 8
Views: 18223

date?

is there a way to get the current date using expressions?
by lloydalvarez
May 18th, 2006, 6:49 pm
Forum: Scripts Discussion
Topic: Create Outlines
Replies: 4
Views: 11824

no, what i am trying to do is get the width of a text layer (since thisLayer.width does not work as one would expect) and one work around we thought of here is to duplicate the text layer, create outlines and read the position of the left most and right most mask vertices using scripting, the proble...
by lloydalvarez
May 18th, 2006, 1:57 pm
Forum: Scripts Discussion
Topic: Create Outlines
Replies: 4
Views: 11824

i am trying to do this as well.. anybody know if this is possible?
by lloydalvarez
May 17th, 2006, 12:05 pm
Forum: Expression Discussion
Topic: How do you do a backspace?
Replies: 1
Views: 6991

How do you do a backspace?

According to Javascript a backspace is \b, but in AE it gives me a y with an accent. \r and \t work as expected. Anybody know what backspace is in AE?

thanks
by lloydalvarez
May 2nd, 2006, 6:57 am
Forum: Scripts Discussion
Topic: Reading Timecode from a QT file?
Replies: 19
Views: 56432

You are right, i would need the media in and out from the source tape, but this info is displayed within FCP, so it's being stored somewhere. I guess i just assumed it was being stored in the QT file, but maybe you are correct about that. hmmmm.. I honestly don't know why it's so hard to read TC wit...
by lloydalvarez
May 1st, 2006, 7:54 pm
Forum: Scripts Discussion
Topic: Reading Timecode from a QT file?
Replies: 19
Views: 56432

I found this little app on the apple website that i think will do what i want (the first half anyway): http://developer.apple.com/samplecode/qttimecode/qttimecode.html but i can't get it to run under 10.4.5 from the readme file it seems that it extracts the TC from a QT file which i could then write...
by lloydalvarez
April 28th, 2006, 5:14 am
Forum: Scripts Discussion
Topic: Reading Timecode from a QT file?
Replies: 19
Views: 56432

Re: TC

redefinery wrote:Is this the Timecode track in a QuickTime movie or burned-in timecode? I'm not aware of anything available to do either via scripting.

Jeff
I would like to read the Timecode track.
by lloydalvarez
April 27th, 2006, 2:31 pm
Forum: Scripts Discussion
Topic: Reading Timecode from a QT file?
Replies: 19
Views: 56432

Reading Timecode from a QT file?

Is it possible to read the TC from a QT that was captured in Final Cut Pro or elsewhere?
by lloydalvarez
April 27th, 2006, 2:30 pm
Forum: Scripts Discussion
Topic: autorun script on project launch?
Replies: 1
Views: 6600

autorun script on project launch?

I know that putting a script in the Scripts > Startup folder will auto run the script when AE launches, but can a script be run automatically when a specific project is opened?
by lloydalvarez
April 19th, 2006, 1:30 pm
Forum: Scripts Discussion
Topic: AE Scripting Guide example script
Replies: 2
Views: 7983

Don't have that guide to refer to, but here's some simple ways to apply effects, starting with the most simple: This applies the "Levels" effect to the 1st layer in the active Comp: var myComp = app.project.activeItem; var myLayer = myComp.layer(1); myLayer("Effects").addProperty...