MP3 player can be used in your flash movie.
//add the following script in first frame
of your movie
intval = setInterval(checkswf, 10);
loadMovieNum('capt_studio_ver2.swf', 1); //loading swf file
on level1
function checkswf () {
if (_level1._x<>undefined) {
_level1._x = 253; //X coordinate of the mp3 movie
_level1._y = 322; //Y coordinate of the mp3 movie
clearInterval(intval);
}
}
|