Forum Replies Created

Page 993 of 1081
  • Dan Ebberts

    December 10, 2006 at 4:28 am in reply to: Magpie remap data into AE

    If you turn on time remapping for your mouth shape layer, highlight the Time Remap property to select the keyframes, and copy, then paste into a text editor, you’ll see the format for keyframe data that your version of AE expects. Substitute your magpie data, copy the entire thing and paste it back into the Time Remap property. That should do it.

    Dan

  • Dan Ebberts

    December 10, 2006 at 4:28 am in reply to: Magpie remap data into AE

    If you turn on time remapping for your mouth shape layer, highlight the Time Remap property to select the keyframes, and copy, then paste into a text editor, you’ll see the format for keyframe data that your version of AE expects. Substitute your magpie data, copy the entire thing and paste it back into the Time Remap property. That should do it.

    Dan

  • Dan Ebberts

    December 6, 2006 at 11:19 pm in reply to: Scripting to import and organize files

    The web/document stuff in JavaScript isn’t implemented in AE scripting. I think your best bet is to defined a delimited flat file structure and write a simple parser for that. It’s not too tough – I do it all the time.

    Dan

  • Dan Ebberts

    December 6, 2006 at 11:14 pm in reply to: Expression help: If X = 1 then do the following…

    Here’s a simple checkbox for Opacity expression that should get you started:

    x = thisComp.layer(“Null 2”).effect(“Checkbox Control”)(“Checkbox”);
    if (x == 1){
    100;
    }else{
    0;
    }

    Dan

  • Dan Ebberts

    December 6, 2006 at 11:14 pm in reply to: Expression help: If X = 1 then do the following…

    Here’s a simple checkbox for Opacity expression that should get you started:

    x = thisComp.layer(“Null 2”).effect(“Checkbox Control”)(“Checkbox”);
    if (x == 1){
    100;
    }else{
    0;
    }

    Dan

  • Dan Ebberts

    December 5, 2006 at 2:22 pm in reply to: posterizeTime expression errors…

    Your expression works fine for me. Are you sure you’re running 6.5?

    Dan

  • Dan Ebberts

    December 5, 2006 at 2:22 pm in reply to: posterizeTime expression errors…

    Your expression works fine for me. Are you sure you’re running 6.5?

    Dan

  • Dan Ebberts

    December 1, 2006 at 6:14 pm in reply to: Transform a 3D Motion Path?

    Probably. Try adding this expression for y rotation:

    -value

    Dan

  • Dan Ebberts

    December 1, 2006 at 6:14 pm in reply to: Transform a 3D Motion Path?

    Probably. Try adding this expression for y rotation:

    -value

    Dan

  • Dan Ebberts

    December 1, 2006 at 5:29 pm in reply to: Transform a 3D Motion Path?

    Try this position expression:

    upperRight = [thisComp.width, 0 ,0];
    lowerLeft = [0, thisComp.height, 0];
    v = lowerLeft – (value – upperRight);
    [v[0], v[1], value[2]]

    Dan

Page 993 of 1081

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