Hey Guys, I have a quick question. I’m doing a click to position code. So when you click a button it will take you to a set of specific coordinates.
example:
example_btn.addEventListener(MouseEvent.CLICK, fl_ClickToPosition_1);
function fl_ClickToPosition_1(event:MouseEvent):void
{
example.x = 0;
example.y = 400.85;
}
my question is what can I do to slow the speed down so it shows actual movement as it is going from position to position? I know you could do it in as2 fairly simple but I want to do it in AS3.
THANKS IN ADVANCE!!