NathanStryker
02-09-2009, 05:22 PM
Hi All-
Anybody out there familiar with Flash CS3 I have what I think is a fairly simple question that I would love some help with.
I have a 2 frame SWF that plays an external movie... the movie is about an hour long, so I want to hide the "next" button until a time when most of the movie has played. Then when the next button is clicked i want the movie to move to the next frame and play ... .
So what I have is this in my actions layer:
Quote:
stop();
nextButton_btn.visible=false;
nextButton_btn.visible=true;
addEventListener(MouseEvent.CLICK, nextPage);
function nextPage(e:Event)
{
gotoAndPlay(2);
}
I need to know what i need to put after btn visible=false; to delay it a set time amount before continuing...
Anybody out there familiar with Flash CS3 I have what I think is a fairly simple question that I would love some help with.
I have a 2 frame SWF that plays an external movie... the movie is about an hour long, so I want to hide the "next" button until a time when most of the movie has played. Then when the next button is clicked i want the movie to move to the next frame and play ... .
So what I have is this in my actions layer:
Quote:
stop();
nextButton_btn.visible=false;
nextButton_btn.visible=true;
addEventListener(MouseEvent.CLICK, nextPage);
function nextPage(e:Event)
{
gotoAndPlay(2);
}
I need to know what i need to put after btn visible=false; to delay it a set time amount before continuing...