I need to stop the movie at the certain frame, and after user clicks on one button I want movie to start playing from the next frame.It should be very simple butI can't find out the right way to do it.
Do you have any advice for me?
Thanks.
Printable View
I need to stop the movie at the certain frame, and after user clicks on one button I want movie to start playing from the next frame.It should be very simple butI can't find out the right way to do it.
Do you have any advice for me?
Thanks.
add this to the button action...
on (release) {
gotoAndPlay(_currentFrame+1);
}