Search found 41 matches

by philspitler
February 2nd, 2009, 1:44 pm
Forum: Announcements
Topic: AE3D EXPORT - AE scene to Maya, Max, and Lightwave
Replies: 78
Views: 236258

Re: AE3D EXPORT - AE scene to Maya, Max, and Lightwave

The script is great but I'm having an issue importing my camera into Maya (2009) The .ma file opens great but it says the scene is 24fps when my comp is 29.97. If I change it in Maya to 29.97, it works but the camera is slightly off when I bring it bac into AE due to Maya interpolating between keyfr...
by philspitler
November 16th, 2007, 7:20 pm
Forum: Scripts Discussion
Topic: Animation Presets
Replies: 2
Views: 7628

Animation Presets

Anybody know of some code to apply an animation preset to a layer?

I am hoping to make a script that will go through each item of footage, make a comp from it, apply the preset then add to the render queue.

Thanks.

Phil
by philspitler
November 7th, 2007, 6:05 pm
Forum: Script requests
Topic: Script to replace footage
Replies: 1
Views: 6976

Script to replace footage

Hi, I would love a script that can go through an entire project file and replace any QT files with a certain suffix with files with a different suffix. Ie. replace shot01_offline.mov with shot01_online.mov I would love to be able to understand and write this myself but that isn't gonna happen. Dan g...
by philspitler
March 9th, 2007, 11:20 am
Forum: Scripts Discussion
Topic: Mask Reverse Path Direction
Replies: 8
Views: 22284

Reverse Mask

I can't get this script to work in AE7, I get Syntax error on line2.

Any ideas?

Thanks.

Phil
by philspitler
November 2nd, 2006, 8:34 pm
Forum: Expression Discussion
Topic: Expressions to access afile
Replies: 1
Views: 7287

Expressions to access afile

Hi,
I know you can access text from a CSV file via scripting but is there any way to pull a line of text from a file using expressions?

Thanks.

Phil
by philspitler
May 11th, 2006, 4:54 pm
Forum: Script requests
Topic: 4th Corner - Tracking
Replies: 2
Views: 8550

4th Corner - Tracking

It is a screen on a PDA but it is hand held with motion on all axis.

But it is a flat plane.

Phil
by philspitler
May 8th, 2006, 2:34 pm
Forum: Script requests
Topic: 4th Corner - Tracking
Replies: 2
Views: 8550

4th Corner - Tracking

Hi, I have quiet a bit of hand corner pinning to do where tracking just won't cut it. I was wondering if there was an expression or script that would help keep the proportions of my corner pinned screens intact. If I know that 3 of them are lined up, there must be some math that can give me the posi...
by philspitler
April 16th, 2006, 12:01 pm
Forum: Expressions Library
Topic: Create a timecode with expressions
Replies: 16
Views: 111375

Ooops

The version I just posted seems to have a rounding error.

When I get to 00:00:24:30 ..... it all slips by a frame.

sorry.

Phil
by philspitler
April 16th, 2006, 11:55 am
Forum: Expressions Library
Topic: Create a timecode with expressions
Replies: 16
Views: 111375

Try This

I just added a Math.round function to the frames and it seems to have fixed the issue. Phil h=0;m=0;s=0;f=0; f+=timeToFrames(); s+=Math.floor(f*thisComp.frameDuration); m+=Math.floor(s/60); h+=Math.floor(m/60); f=Math.round(f%(1/thisComp.frameDuration)); s=s%60; m=m%60; if(f<10) {f="0"+f} ...
by philspitler
November 2nd, 2005, 5:04 pm
Forum: Paul Tuersley's Scripts
Topic: SSA Subtitle Importer
Replies: 40
Views: 196176

Hi Paul, I would like to usee your script, it looks like a real time saver. I generated my test .ssa file but get a script error when I select it. My .ssa is below. Any ideas? Thanks. Phil [Script Info] ; ; Script generated by SubCreator ; Title: <unknown> Original Script: <unknown> Original Transla...
by philspitler
November 2nd, 2005, 12:11 pm
Forum: Script requests
Topic: Insert Time
Replies: 1
Views: 7283

Insert Time

One issue I often come up with is the ability to insert time into a complex AE project. I am trying to think if a script could help or any other method of automating the process of. Sliping all layers that haven't started at the current time. Sliping all keyframes beyond the current time on the laye...