tags:

views:

111

answers:

1

hi

i have a very simple animation in flash CS4. My image travels from point X to point Y over 90 frames. I would like the image to stop at frame 45 for a few seconds, before continuing.

how would i achieve this

thanks

A: 

add this actionscript to the frame 45:

    stop();
    var myTimer:Timer = new Timer(5000, 1);
    myTimer.start();
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, function(e:TimerEvent){
        play();
    });
antpaw
great, thank you!
dave1019