Search found 84 matches

by Yenaphe
February 23rd, 2009, 1:03 pm
Forum: Scripts Discussion
Topic: Bug in CS3 CS4 ?
Replies: 2
Views: 7843

Re: Bug in CS3 CS4 ?

crashed here too on my CS4 AE, win Vista 32.

Same error message in Extend script.
by Yenaphe
February 18th, 2009, 7:02 pm
Forum: Paul Tuersley's Scripts
Topic: AE to C4D
Replies: 82
Views: 494170

Re: AE to C4D

How would you "parent" a camera with ToWorld ?

I'm very unfamiliar with this.
by Yenaphe
February 15th, 2009, 6:24 am
Forum: Scripts Discussion
Topic: Retrieving user entered value?
Replies: 7
Views: 12772

Re: Retrieving user entered value?

Paul, what is the main difference between eval(); and ParseInt(); ?
by Yenaphe
February 14th, 2009, 7:30 pm
Forum: Scripts Discussion
Topic: Retrieving user entered value?
Replies: 7
Views: 12772

Re: Retrieving user entered value?

I'm not a killer with UI objects, but does something like this works:

Code: Select all

var numCopies = eval(myPanel.butTwo.value); //you have to use eval to convert a text string to a usable number
by Yenaphe
February 11th, 2009, 7:25 pm
Forum: Script requests
Topic: Altered Save and Increment script
Replies: 2
Views: 7593

Re: Altered Save and Increment script

Well you could try something like that: My_Altered_Name = myfile.name; //myfile shall be the object containing the pointer to your file // the char you want to change is the 16th in your name, so you can alter the name to get the first part. My_First_Part = My_Altered_Name.substr(0,15); // now we ch...
by Yenaphe
February 11th, 2009, 7:13 pm
Forum: Expression Discussion
Topic: turning layers in blanck and white according to the Z positi
Replies: 1
Views: 7543

Re: turning layers in blanck and white according to the Z positi

A few weeks ago, Andrew Kramer posted a presset on his website that does what you want. http://www.videocopilot.net/tutorials/3d_falloff/ But the basic idea would be to create a simple expression that gets the distance of your layers anchor points to the camera, and then do a linear between your min...
by Yenaphe
February 10th, 2009, 1:38 pm
Forum: Expression Discussion
Topic: I want Adjustment Layer to only effects certian layers?
Replies: 2
Views: 9294

Re: I want Adjustment Layer to only effects certian layers?

In this case, if you can't precomp, the best solution is to apply your effects on a per layer basis.

Seb
by Yenaphe
February 7th, 2009, 11:26 am
Forum: Scripts Discussion
Topic: I just want a button that says "Go!" and I cant get it
Replies: 2
Views: 6805

Re: I just want a button that says "Go!" and I cant get it

This piece of code should help you. It creates a panel "YourPanel", with a button that execute the script linked to them in the "addscriptbutton" fonction. This code is based on one of the sample script provided with AE. { function onScriptButtonClick() { var scriptFile = new Fil...