Hi, can you help me
i need to move my_MC FROM_ACTUAL_POSITION with actionscript tween class…
(3 BUTTONS moving with 1 MC)
(FROM_ACTUAL_POSITION i mean:onRelease move from “OLD(current)” position on NEW position)
Thank you a lot
P.S.
I am begginer…
import mx.transitions.Tween;
myButton1_btn.onRelease = function() {
var Move:Tween = new Tween(box_mc, “_y”, Regular.easeIn, FROM_ACTUAL_POSITION(current), 150, 1, true);
Move.onMotionFinished = function() {
loadMovieNum(“one.swf”, 10);
};
};
myButton2_btn.onRelease = function() {
var Move:Tween = new Tween(box_mc, “_y”, Regular.easeIn, FROM_ACTUAL_POSITION(current) , 200, 1, true);
Move.onMotionFinished = function() {
loadMovieNum(“two.swf”, 10);
};
};
myButton3_btn.onRelease = function() {
var Move:Tween = new Tween(box_mc, “_y”, Regular.easeIn, FROM_ACTUAL_POSITION(current) , 100, 1, true);
Move.onMotionFinished = function() {
loadMovieNum(“three.swf”, 10);
};
};