Hello, I’m trying to move a movieclip from off stage into a position on stage using the tween and easing classes. I have the code written out on an actions layer, not on the button and for some reason it’s not working. I’m not getting any errors either. The codes pasted below. Thanks!!
import mx.transitions.Tween;
import mx.transitions.easing.*;
//Button
_root.products_mc.onEnterFrame = function() {
if (mouse_over_products_mc) {
_root.products_mc.nextFrame();
}
else {
_root.products_mc.prevFrame();
}
};
//action when clicked
prod_btn.onRelease = function() {
new Tween(prod_content_mc, “x”, Elastic.easeOut, 962, 341, 3, true);
}