Flash Presentation Needs To Pause After Certain Movie Clips
Hi Adobe Peeps,
Im trying to create an interactive presentation in a similiar style to the one used in the url below...
http://www.messagelabs.co.uk/default.aspx
So far i have several movie clips that play in order on the timeline, and several buttons that when hovered over go to a specific label that will play each movie clip again and continue the presentation.
My action script is as follows,
one_btn.addEventListener(MouseEvent.ROLL_OVER,buttonClickedOne);
function buttonClickedOne(event:MouseEvent)
{
gotoAndPlay("label1");
}
two_btn.addEventListener(MouseEvent.ROLL_OVER,buttonClickedTwo);
function buttonClickedTwo(event:MouseEvent):void
{
gotoAndPlay("label2");
What I cannot figure out is how to make the button play a movie clip in the presentation and then pause until the user selects another button (similiar to how the animation works in the example url).
Any help achieving this functionality would be greatly appreciated!
![]()