PDA

View Full Version : Javascript menu, flash and safari


Baleric
01-16-2007, 02:33 AM
hey guys,
i have a dream weaver made javascript dropdown menu and it drops down over a flash file, basically the first issue i had was the flash was ontop of the menu,
but this was resolved with a wmode = transparent on the flash file,

this works on all browsers including all mac browsers except for safari.
in safari the menu disappears and reappears randomly, the flash file is somehow causing the drop down menu to not pickup the onRollover unless the mouse is moving,

is there any way i can fix this but keep my menu and flash file?

Thanks in advance,


Cheers


Baleric

Baleric
01-16-2007, 05:37 AM
dont worry guys i figured a work around out,

i used asp to determine the browser, then if it is opera or safari ill make iot redirect to a new page where the menu drops up instead of down and NOT over the flash file...

<%
yourBrowser = Request.ServerVariables("HTTP_USER_AGENT")
If InStr(yourBrowser, "Safari") or InStr(yourBrowser, "Opera") Then
Response.redirect("indexMENUUP.asp")
End If
%>