Forum Replies Created

Page 1072 of 1081
  • Dan Ebberts

    June 8, 2005 at 1:54 pm in reply to: Help with Ayato 45

    Is your text a single path like his is?

    Dan

  • Dan Ebberts

    June 8, 2005 at 1:16 pm in reply to: velocity expression leaves falling problem

    I’m not sure if these are what you’re after, but

    toWorld(anchorPoint)[1]

    gives you the global y position and

    position.speed

    gives you the scalar value of the velocity

    Dan

  • Dan Ebberts

    June 8, 2005 at 1:16 pm in reply to: velocity expression leaves falling problem

    I’m not sure if these are what you’re after, but

    toWorld(anchorPoint)[1]

    gives you the global y position and

    position.speed

    gives you the scalar value of the velocity

    Dan

  • Dan Ebberts

    June 7, 2005 at 6:57 pm in reply to: AE Scripting: Getting info from a text file

    Try it this way:

    
    var text;
    while (!myFile.eof){
      text = myFile.readln();
      if(text.length != 0) myComp.layers.addText(text);
    }
    
    

    That should detect the line breaks.

    Dan

  • Dan Ebberts

    June 7, 2005 at 5:58 pm in reply to: Audio Amplitude Expression Question

    Something like this should do it:

    minAudio = 0;
    maxAudio = 15;
    minOpacity = 0;
    maxOpacity = 100;

    audio = thisComp.layer(“Audio Amplitude”).effect(“Both Channels”)(“Slider”);
    linear(audio,minAudio,maxAudio,minOpacity,maxOpacity)

    Adjust the parameters to fit your situation.

    Dan

  • Dan Ebberts

    June 7, 2005 at 5:58 pm in reply to: Audio Amplitude Expression Question

    Something like this should do it:

    minAudio = 0;
    maxAudio = 15;
    minOpacity = 0;
    maxOpacity = 100;

    audio = thisComp.layer(“Audio Amplitude”).effect(“Both Channels”)(“Slider”);
    linear(audio,minAudio,maxAudio,minOpacity,maxOpacity)

    Adjust the parameters to fit your situation.

    Dan

  • Dan Ebberts

    June 2, 2005 at 4:18 pm in reply to: Camera rotation and anchor point

    Createing a null, moving it so that its anchor point lines up with where you want the camera to rotate, making it the parent of the camera, and rotating the null should do exactly what you want.

    Does that not work for you?

    Dan

  • Dan Ebberts

    June 2, 2005 at 3:44 pm in reply to: Position Drift Offset … rate, time expression

    Play around with this:

    xDist = 150; // x travel distance (pixels)
    startTravel = 1; // time to start travel (seconds)
    travelDur = 2; // duration of travel (seconds)

    linear(time,startTravel,startTravel+travelDur,value,value+[xDist,0]);

    Dan

  • Dan Ebberts

    June 2, 2005 at 3:44 pm in reply to: Position Drift Offset … rate, time expression

    Play around with this:

    xDist = 150; // x travel distance (pixels)
    startTravel = 1; // time to start travel (seconds)
    travelDur = 2; // duration of travel (seconds)

    linear(time,startTravel,startTravel+travelDur,value,value+[xDist,0]);

    Dan

  • Dan Ebberts

    May 23, 2005 at 5:22 pm in reply to: Scaling by wiggle expressions – how to ?

    Like this:

    w = wiggle(3,50);
    [w[0],w[0]]

    Dan

Page 1072 of 1081

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy