I have created a slideshow from a Flash 8 template. There is a parent slide with several child slides underneath it. The forward and back buttons are created in the parent slide and are inherited by the child slides.
Problem: I need to somehow disable the forward/backward buttons for a period of time while an audio clip plays, then re-enable the buttons and allow the viewers to continue once the audio clip ends.
I tried adding this piece of actionscript to one of the child slides, but I don't think I'm using the correct object name:
on (reveal) {
forwardBtn.enabled = false;
}
This doesn't work, but I think it's close!
I can probably hash out the rest of the code if I can just figure out how to disable the buttons.
Thanks!
Problem: I need to somehow disable the forward/backward buttons for a period of time while an audio clip plays, then re-enable the buttons and allow the viewers to continue once the audio clip ends.
I tried adding this piece of actionscript to one of the child slides, but I don't think I'm using the correct object name:
on (reveal) {
forwardBtn.enabled = false;
}
This doesn't work, but I think it's close!
I can probably hash out the rest of the code if I can just figure out how to disable the buttons.
Thanks!