View Full Version : Urgent Help Needed In Creating Pause Button


orhanmc
11-30-2005, 05:25 PM
I have a film with motion and audio. I need a button that will stop both sound and motion and restart it when clicked. PLEASE HELP.

Backlight
01-19-2006, 07:21 AM
Load your movie on to _level1 and simply use these codes on your buttons

Pause:

on (release) {
_level1.stop();
}


Play:

on (release) {
_level1.play();
}

JoelTown
01-22-2006, 08:23 PM
if you steam your audio and just make a simple stop(); action for a button, i think it would work