Regular.easeIn / Strong.easeOut : This shouldn't be hard right?
I've got a tween that moves a movie clip from right to left. I want it to Regular.easeIn and Strong.easeOut. I have no idea what's wrong with my code. This is all very new to me so I apologize for not getting it, assuming this is really a no brainer, etc. Anyhow, here's what I've got in my action script 3.0 panel.
import fl.transitions.Tween ;
import fl.transitions.easing .*;
var playerXTween :Tween = new Tween(mc_GENERIC, "x" , Regular.easeIn , 200, -200, 90, true);
I've tried to copy the code and make a regular.easeIn and a Strong.easeOut and I get error messages. Also, though I don't know why, I cannot even get it to do a Regular.easeInOut !!! No idea why... What am I missing? Thanks much, Ethan.
