Forum Replies Created

Page 1039 of 1081
  • Dan Ebberts

    January 17, 2006 at 7:28 pm in reply to: Help with random image dissolves.

    It would be a bit of work, but you could do it with a script. If it were me, I’d have the script build a separate comp for each location in the grid and randomly populate the sequence.

    Dan

  • Dan Ebberts

    January 16, 2006 at 5:17 pm in reply to: Expression to mimic aerial perspective?

    That’s the idea. 🙂

    Glad to help.

    Dan

  • Dan Ebberts

    January 16, 2006 at 5:17 pm in reply to: Expression to mimic aerial perspective?

    That’s the idea. 🙂

    Glad to help.

    Dan

  • Dan Ebberts

    January 16, 2006 at 2:02 am in reply to: Expression to mimic aerial perspective?

    Something like this:

    dist = position[2] – thisComp.activeCamera.position[2];
    linear(dist,4000,6000,100,0)

    Dan

  • Dan Ebberts

    January 16, 2006 at 2:02 am in reply to: Expression to mimic aerial perspective?

    Something like this:

    dist = position[2] – thisComp.activeCamera.position[2];
    linear(dist,4000,6000,100,0)

    Dan

  • Dan Ebberts

    January 16, 2006 at 1:51 am in reply to: “rasterize” expression?

    Is this what you’re looking for?

    Animation > Keyframe Assistant > Convert Expression to Keyframes

    Dan

  • Dan Ebberts

    January 16, 2006 at 1:51 am in reply to: “rasterize” expression?

    Is this what you’re looking for?

    Animation > Keyframe Assistant > Convert Expression to Keyframes

    Dan

  • Dan Ebberts

    January 12, 2006 at 2:32 pm in reply to: Can AE read from a database (or a simple textfile) ?

    In general, it would involve prompting the user to navigate to your text file, setting up a loop to read each line of the file until the end-of-file is reached, converting the text to floating point and creating a new position keyframe at the appropriate time (which, from your description, sounds like it would be the same as the line number).

    It’s fairly straight-forward if you have some scripting exprerience. Unfortunately the learning curve for scripting is quite a bit steeper than it is for expressions.

    Dan

  • Dan Ebberts

    January 12, 2006 at 2:32 pm in reply to: Can AE read from a database (or a simple textfile) ?

    In general, it would involve prompting the user to navigate to your text file, setting up a loop to read each line of the file until the end-of-file is reached, converting the text to floating point and creating a new position keyframe at the appropriate time (which, from your description, sounds like it would be the same as the line number).

    It’s fairly straight-forward if you have some scripting exprerience. Unfortunately the learning curve for scripting is quite a bit steeper than it is for expressions.

    Dan

  • Dan Ebberts

    January 12, 2006 at 4:01 am in reply to: adding decay to Dan’s random lines script

    I was afraid of that. 🙂

    Something like this might work:

    
    
    decayStart = 4;
    decaySpeed = 4;
    segMin = .3; //minimum segment duration
    segMax = .7; //maximum segment duration
    minVal = 0;
    maxVal = thisComp.width;
    
    end = 0;
    j = 0;
    if (time > decayStart){
      delta = time - decayStart;
      factor = 1 + delta*delta*decaySpeed;
    }else{
     factor = 1;
    }
    while ( time >= end){
      j += 1;
      seedRandom(j,true);
      start = end;
      end += random(segMin,segMax)*factor;
    }
    endVal =  random(minVal,maxVal);
    seedRandom(j-1,true);
    dummy=random(); //this is a throw-away value
    startVal =  random(minVal,maxVal);
    y = position[1];
    ease(time,start,end,[startVal,y],[endVal,y])
    
    

    Dan

Page 1039 of 1081

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