// Requires a movieclip with the instance name "objectMC" to be on the stage
var myTimer:Timer = new Timer(6000, 1);
myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, timerHandler);
myTimer.start();
function timerHandler(evt:TimerEvent):void
{
car.x = 200;
car.y = 200;
}
//myTimer.stop();
AS 2 is it possible to make characters click-to-move?
-
What I'm asking specifically is, is it possible to make characters (or just
plain symbols) dynamically move to your cursor when you click on something?
I'v...
2 weeks ago
0 comments:
Post a Comment