Search found 13 matches
- October 24th, 2007, 4:01 pm
- Forum: Expression Discussion
- Topic: custom eases through expressions
- Replies: 12
- Views: 45749
Yes, all of these could definitely be coded into an AE expression...there are actually a ton of types of interpolation methods out there...spline based interpolation, polynomial based, lerp, cosine, etc. Maybe sometime in the next two weeks I'll get some time to code a few of these, I can see a few ...
- September 8th, 2007, 10:31 am
- Forum: General Scripts Library
- Topic: BG Renderer CS3
- Replies: 10
- Views: 42280
Nice
Thanks Lloyd, this is a very usefull script... especially for those without the $ to buy Nucleo. Why no source code this time around however?
- July 26th, 2007, 10:37 am
- Forum: Expressions Tutorials
- Topic: Some free expressions tutorials
- Replies: 0
- Views: 62825
- July 25th, 2007, 8:23 am
- Forum: Expression Discussion
- Topic: projectile motion
- Replies: 2
- Views: 12735
Try this expression
initialVeloc = 93; simSpeed = 7; gravity = 9.8; launchAngle = 70; launchPoint = [ 72 , 452 ]; //--------- t = time * simSpeed; a = [ 0 , gravity ]; initialVx = initialVeloc * Math.cos( degreesToRadians( launchAngle) ); initialVy = initialVeloc * Math.sin( degreesToRadians(- launchAngle) ); v = [ t ...
- June 21st, 2007, 9:33 pm
- Forum: Expression Discussion
- Topic: A script that converts a movieclip into a raster image?
- Replies: 9
- Views: 26271
- April 11th, 2007, 9:44 pm
- Forum: Announcements
- Topic: Input needed on new render management software
- Replies: 0
- Views: 50278
Input needed on new render management software
Hello everyone, I have been working on a standalone render manager app for compositors/motion graphics artists/3d artists. Here is a thread about it on creativecow.net. http://forums.creativecow.net/readpost/2/903505? I would really appreciate some input form some of the technically minded people wh...
- March 2nd, 2007, 1:26 am
- Forum: Script requests
- Topic: Scheduling a render
- Replies: 4
- Views: 16006
I've recently been working on a standalone render automation program ive written in Java. This might be useful to you. It works fine on Windows right now, I'm just fixing up some UI issues and adding a few features before I put it online somewhere. This program can be used to schedule After Effects ...
- February 3rd, 2007, 1:56 pm
- Forum: Expressions Library
- Topic: video "scratching" effect
- Replies: 3
- Views: 33882
Try this instead:
Code: Select all
maxAmp = 30;
minAmp = 1;
spanAmp = maxAmp - minAmp;
incAmp = Math.sqrt(spanAmp);
if(varAmp < spanAmp/2){
(varAmp / incAmp) - incAmp;
} else {
(varAmp / incAmp) + incAmp;
}
- January 30th, 2006, 11:07 am
- Forum: General Scripts Library
- Topic: Render Settings Script
- Replies: 0
- Views: 18977
Render Settings Script
After recently rendering something, only to realize I left a few layers on draft quality, I decided to create a script that could turn on certain settings througout a slected comp, and it's nested comps. This script uses a UI and allows users to specify if they want Best quality for all layers, to s...
- January 23rd, 2006, 8:54 pm
- Forum: Scripts Discussion
- Topic: AE 7
- Replies: 10
- Views: 34935
AE 7 Additions
Since I don't have AE 7 yet and can't seem to find the new scripting guide online, anyone care to tell me what iconButtons are? Also, what is this system.callSystem() you mentioned in your previous post? Thanks for the info.
~Colin
~Colin
- September 7th, 2005, 5:06 pm
- Forum: Scripts Discussion
- Topic: Foorage replace
- Replies: 4
- Views: 17090
- September 4th, 2005, 8:43 pm
- Forum: Scripts Discussion
- Topic: Foorage replace
- Replies: 4
- Views: 17090
Foorage replace
Anyone know how to replace a simple way to replace a layer in a comp with a footageItem.(like what happens when you alt drag a piece of footage onto a layer)? I looked through the scripting guide and can't seem to find a simple way to do this.
~Colin
~Colin
- August 30th, 2005, 8:52 am
- Forum: Expressions Library
- Topic: Create a timecode with expressions
- Replies: 16
- Views: 194287