|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I am having a problem with a menu being viewed in IE 5.1 on Mac using Flashplayer 5. My button animations and sound effects aren't working. The anims are separated using Frame Labels. Here's the code attached to the buttons:
Quote:
Anyhow, this seems to work in every other browser on either platform, except IE 5.1 for Mac with Flash 5. Any help would be grand! k |
|
#2
|
|||
|
|||
|
get the Flash 6 Player for the mac.
the script myClip.onRollOver = function(){ .... looks like a MX script, and it's not compatible with 5. |
|
#3
|
|||
|
|||
|
dkkz is right - you're using the MX event model.
at this point it's a safe bet that a lot of people have version 6 of the player, but you should put some version checking in your movie. I usually make a separate scene and check to see if they've got the right player. You can easily do this by calling a function that is new to flash 6, like getDepth(): testVar = getDepth(); if (!testVar) { stop(); //prompt user to upgrade their player } else { gotoAndPlay("Scene 1", 1); } Cheers. |
|
#4
|
|||
|
|||
|
Thansk guys! I'm going to put a version checker in there...make it easier on myself
![]() |
![]() |
| Viewing: Dev Shed Forums > Web Design > Flash Help > Flash in IE 5.1 for Mac |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|