My problem is I can't continuously play my "music.mp3" file in flash.It is play just one time and stop.How i play this sound continuously.Please help me.My code is: var mySound = new Sound(); mySound.loadSound("music.mp3",true );
You can try the below code. Here 0 is the offset and 9999 is the times that the sound will loop. mySound.start(0,9999); Code (markup):