A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: [RESOLVED] [F8] sound not playing in Firefox 3.5

  1. #1
    Senior Member
    Join Date
    Jan 2004
    Posts
    171

    resolved [RESOLVED] [F8] sound not playing in Firefox 3.5

    Hi

    I've made a page with some flash sound buttons that load and play an mp3 when clicked - if you scroll down the page ( http://www.materre.net/DEV/paniers-l...-bio-voeux.php ) you can see some green-ish circles with a sort of loudspeaker that are the buttons to click

    they work fine in Internet Explorer but not in FF 3.5.5 where you just get a loading data message in the status bar but it never plays - could it be a security problem (though the mp3s are loading from the same domain)

    the sounds are being loaded with this function
    PHP Code:
    function loadSoundFunction(){
        
    myMp3_sound.stop();
        
    newTune "http://www.materre.net/DEV/mp3/"+_level0.f;
        
    myMp3_sound = new Sound();
        
    myMp3_sound.loadSound(newTunetrue); 

    and the name of the mp3 is passed as a variable using
    Code:
    <param name="movie" value="voeux-prods.swf?f=Voeux_michel_Seimandi.mp3" />
    what do you think could be the problem ?

    thanks

  2. #2
    Senior Member
    Join Date
    Jan 2004
    Posts
    171
    yikes ! once I had posted that I tried removing the ".mp3" from the string passed as a variable in the embed tags and lo-and-behold it works fine now!

    so FF 3.5 doesn't like a dot in the vars in the url of the swf


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center