Forum Replies Created

Page 1046 of 1081
  • Dan Ebberts

    November 3, 2005 at 8:33 pm in reply to: expression controle

    You could try the smooth() method like this:

    temp = thisComp.layer(“Audioamplitude”).effect(“Linker Kanal”)(“Schieberegler”).smooth(.2,5,time);
    [temp, temp]*30 + [25,25]

    Dan

  • Dan Ebberts

    November 3, 2005 at 4:03 pm in reply to: expression controle

    The easiest way is probably just to add an offset:

    temp = thisComp.layer(“Audioamplitude”).effect(“Linker Kanal”)(“Schieberegler”);
    [temp, temp]*30 + [25,25]

    Where 25 would be the minimum. You’ll have to adjust your multiplier (30) to end up with the same maximum value.

    Dan

  • Dan Ebberts

    November 3, 2005 at 4:03 pm in reply to: expression controle

    The easiest way is probably just to add an offset:

    temp = thisComp.layer(“Audioamplitude”).effect(“Linker Kanal”)(“Schieberegler”);
    [temp, temp]*30 + [25,25]

    Where 25 would be the minimum. You’ll have to adjust your multiplier (30) to end up with the same maximum value.

    Dan

  • Dan Ebberts

    November 1, 2005 at 12:18 am in reply to: swf exports are disappointing

    The key to getting good results is having nothing in your comp that has to be rasterized. That means no effects, image files, precomps, or 3D. If you restrict your comp to solids and Illustrator files you should be OK. Otherwise your file size will balloon and performance will suffer.

    Dan

  • Dan Ebberts

    October 31, 2005 at 3:11 pm in reply to: basic expression query

    That should work. This is a little more efficient:

    value + [10,10]

    Dan

  • Dan Ebberts

    October 31, 2005 at 3:11 pm in reply to: basic expression query

    That should work. This is a little more efficient:

    value + [10,10]

    Dan

  • Dan Ebberts

    October 28, 2005 at 6:48 pm in reply to: increasing numbers in text

    Well, I don’t know about infinitely, but you can use a text layer with an expression to count up to 999999999999999.

    Here’s an example that counts from 1600000 to 999999999999999 over 4 seconds:

    startCount = 1600000;
    endCount = 999999999999999;
    countDur = 4;
    Math.round(linear(time,0,countDur,startCount,endCount))

    Dan

  • Dan Ebberts

    October 28, 2005 at 6:48 pm in reply to: increasing numbers in text

    Well, I don’t know about infinitely, but you can use a text layer with an expression to count up to 999999999999999.

    Here’s an example that counts from 1600000 to 999999999999999 over 4 seconds:

    startCount = 1600000;
    endCount = 999999999999999;
    countDur = 4;
    Math.round(linear(time,0,countDur,startCount,endCount))

    Dan

  • Dan Ebberts

    October 20, 2005 at 10:17 pm in reply to: guestion

    Alt+click on the stopwatch for opacity, paste in the expression, hit enter on the numeric keypad.

    Dan

  • Dan Ebberts

    October 20, 2005 at 10:17 pm in reply to: guestion

    Alt+click on the stopwatch for opacity, paste in the expression, hit enter on the numeric keypad.

    Dan

Page 1046 of 1081

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