Hi all, MY first post here so I hope I make myself clear.
I am working on this flash thing and have a point where I open up another movie with this button:
on (release) {
attachMovie("doit", "doit2", 10);
}
on (press) {
// Pause Button
if (pause != true) {
playing = false;
paused = true;
stopped = false;
myConditionText = "Paused";
myMusicPosition = _root.myMusic.position/1000;
_root.myMusic.stop("green");
}
}
It also pauses the sound file I have playing in the background.
Now my question
The new movie is at at a "stop" point. How do I get another button to appear when they click this button? I've done a "realease" and a "press" on one button, can i do more?
I basically need a big un-pause button to appear to replay the sound.
Thanks