 |
|
 |
| |
 |
 |
Using Flash Mp3 Player on existing movie:
CaptStudio can be
used in your flash movie.
//add the following script in first frame of your
movie
intval = setInterval(checkswf, 10);
loadMovieNum('capt_studio.swf', 1); //loading
swf file in 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);
}
}
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/
flash/swflash.cab#version=6,0,29,0"
width="377" height="33"> <!--movie
height and width-->
<
param name="movie" value="CS_bar.swf"> <!--Flash Mp3 Player movie name-->
<
param name="quality" value="high">
<
PARAM NAME=wmode VALUE=transparent>
<
embed src="CS_bar.swf" <!--Flash Mp3 Player movie name-->
quality="high"
menu=false
wmode=transparent
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="377"
height="33"></embed>
<
/object>
|
|
|
 |
|
 |
|