Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a text layer and a slider controll, to which I type number of lines. I want the layer to start moving upwards when number of lines is greater than 7. I want it to gradually (ease out) start moving when time is 3,5s and stop once it reaches certain value calculated from number of lines.

I tryed this condition thinking that it will stop moving once one of the conditions will stop being true. Which was false assumption.. it just keeps rising.

lines = effect("lines")("Slider");
maxPos = lines*20;
s = 3.4; //starting time

if (time>s && lines>7 && value[1]>maxPos)  //I thought it will stop once 3rd condition starts being false
[value[0],value[1]+((time-s)*-130)] //motion speed
else
value

The ease out expression is not there, because I don't know how to use it though I know it could look like this

easeOut(t, tMin, tMax, value1, value2)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.