I inherited a flash website about a year ago… not sure what version it was originally done in. I’ve made changes on the model last year using CS3 Flash Action script 2, but don’t remember the flash version when published. The audio in question is the music that plays in the background when you get on the website:
When I changed the image of the model this last week using CS4, I published it as Flash8 actionscript 2… now, the music plays on Mac Safari and Mac Firefox, but not on the Windows versions of IE or Firefox…
this is the code called sound control - hopefully it will help…
onClipEvent(load)
{
_root.soundstatus=“on”;
_root.mySound = new Sound(_level0);
_root.mySound2 = new Sound(_level1);
_root.mySound3 = new Sound(_level2);
_root.mySound4 = new Sound(_level3);
_root.mySound5 = new Sound(_level4);
maxvolume=100;
minvolume=0;
}
onClipEvent(enterFrame)
{
if(_root.soundstatus==“on”) {step=5}
if(_root.soundstatus==“off”) {step=-5}
maxvolume+=step;
if (maxvolume>100) {maxvolume=100;}
if (maxvolume<0) {maxvolume=0;}
_root.mySound.setVolume(maxvolume);
_root.mySound2.setVolume(maxvolume);
_root.mySound3.setVolume(maxvolume);
_root.mySound4.setVolume(maxvolume);
_root.mySound5.setVolume(maxvolume);
}
then there’s the stop() that’s used when the music is toggled off…
I’ve tried updating the flash player in Windows to the latest release, and I even tried republishing as flash 10, just not sure where to troubleshoot this…
Any help would be appreciated. Thanks!
Jill