Forum Replies Created

  • Muhammad Mont

    August 21, 2021 at 1:09 am in reply to: Can i export m2v from Aftereffects?

    Thanks Walter i’ll try it

  • Muhammad Mont

    December 6, 2020 at 1:32 pm in reply to: This expression very hard to edit

    Thanks Dan its works great ?

  • Muhammad Mont

    November 26, 2020 at 1:32 pm in reply to: Make this expression works with specific marker key

    Works well

    Thank you very much

  • Muhammad Mont

    November 22, 2020 at 8:12 pm in reply to: How to edit this expression

    Yes its exactly what I want,

    Like screen saver movment in pc or No signal in lcds

    Thank you so Much Mr Dan

  • Muhammad Mont

    November 22, 2020 at 4:10 pm in reply to: How to edit this expression

    I want object to travels on the screen x and y randomly with smooth movment

    And makes me control movment and hold duration

  • Muhammad Mont

    November 22, 2020 at 2:45 pm in reply to: How to edit this expression

    Yes sorry here it is,

    minInt = 120;

    maxInt = 240;

    minAmp = 3;

    maxAmp = 7;

    minDur = 5;

    maxDur = 10;

    fade = .5;

    prev = next = inPoint;

    seedRandom(index,true);

    while (time >= next){

    prev = next;

    next += random(minInt,maxInt);

    }

    seedRandom(prev,true);

    amp = random(minAmp,maxAmp);

    dur = random(minDur,maxDur);

    w = wiggle(5,amp);

    t = time – prev;

    if (t < dur/2)

    ease(t,0,fade,value,w)

    else

    ease(t,dur-fade,dur,w,value);

  • Muhammad Mont

    November 21, 2020 at 2:02 am in reply to: Logo movment expression

    Thanks kevin for quick answer , i’ll try it

  • Muhammad Mont

    May 19, 2020 at 5:06 pm in reply to: Why i face this problem when i move objects

    No, i mean the logo is shaky may be
    No smooth movment , what is the wrong

  • Muhammad Mont

    May 3, 2020 at 11:42 pm in reply to: Movement bounce expression inPoint,outPoint

    Really you are an amazing man,
    Working like magic,
    Thank you very very much ????

  • Muhammad Mont

    May 3, 2020 at 11:26 pm in reply to: Movement bounce expression inPoint,outPoint

    I have this, it’s your expression as usual
    Want edit it for position , come from out of comp and land with bounce then go out with bounce as well.

    rate = 500;
    rampDur = value[0]/rate;
    freq = 3;
    decay = 5;
    w = freq*Math.PI*2;

    if (time < (inPoint+outPoint)/2){
    if (time < (inPoint + rampDur)){
    s = linear(time,inPoint,inPoint+rampDur,0,value[0]);
    }else{
    t = time – (inPoint+rampDur);
    s = value[0] + rate*Math.sin(t*w)/Math.exp(t*decay)/w;
    }
    }else{
    if (time > (outPoint – rampDur)){
    s = linear(time,outPoint-rampDur,outPoint,value[0],0);
    }else{
    t = (outPoint – rampDur) – time;
    s = value[0] + rate*Math.sin(t*w)/Math.exp(t*decay)/w;
    }
    }
    [s,s]

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