Easing

Hi All-

Trying to accomplish a very simple easing effect and have never done it before = me feeling like a *******.

I have an arrow that I want to move on Rollover. I have it set up as a movie clip with off and on frame labels. at the first key frame (frame label “off”) I have a stop();

at the 5th key frame (label “on”) I have a simple tween on the timeline that moves it about 10 pixels to the right (10,0) and then back so that it bounces/points on rollover. on rolloff it goes to “off”.

Trouble is that on roll off it snaps back to the off frame and i would like it to ease back to the position (0,0) that it would be in at the “off” frame.

Does that make sense? I know this is a simple solution but I’m soo clouded right now. Any help and I will love you forever:hugegrin:

Hmm I’d probably need to see some source. But from what you’ve described, I think you should keep the arrow on one frame and just use tween class like so [AS]arrow.onRollOver = function() {
new mx.transitions.Tween(this,"_x",mx.transitions.easing.Regular.easeOut, this._x, 10, 25);
}
arrow.onRollOut = function() {
new mx.transitions.Tween(this,"_x",mx.transitions.easing.Bounce.easeOut, this._x,0, 25);
}[/AS]

Do I need to include a tween class for this to work?

Yes, you definitely need to inclde it in

Refer to this
http://www.kirupa.com/developer/actionscript/tween.htm