Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

interactivity problem

Status
Not open for further replies.

QuintusMessius

Technical User
Joined
Jun 20, 2003
Messages
1
Location
FI
Hi,
I have created a simple interactive map with flash MX. How can I get the "on-release action" to play until the end of the movie, without being interrupted if another "rollover action" occurs, or if the mouse is clicked and released again? I really appreciate your help.

 
clicked = false;
my_btn.onRelease = function(){
if(!clicked){
clicked = true;
//do my bidding
}
}

my_btn.onRollover = function(){
if(!clicked){
//do my bidding
}
)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top