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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Popup menus acting strange

Status
Not open for further replies.

Marnie101

Programmer
Nov 7, 2001
5
CA
I have a rather peculiar problem with my popup menu. It seems that for some users, the menus just don't behave properly at all. When clicked they will go to another page, goto the home page or not change pages at all.

Here is an example of the code....

this is on the main button
on(rollOver){
if(not(newsinfo.showing)){
newsinfo.show();
}
}

this is part of the script on the button that pops up
stop();
function show(){
showing = true;
play();
}

this is also within the movie for the button that pops up
onClipEvent(enterFrame) {
if(not(hitTest(_root._xmouse, _root._ymouse))){
_root.newsinfo.play();
}
}

Here is the link for a look at the flash menu...I can't recreate this problem but you may see it.

Thanks for your help [thumbsup]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top