hi susan,
wht i mean is..
u had set the dimension in 100 %, both width and height, so this will scale the movie according to the movie size, i suppose u need that property.
when ur setting the dimension as 100%, wht netscape will do is, it will take only width as 100 px and height as 100 px, netscape won't take % value, means it won't scale movie as IE does
i saw the code. this is urs
---------------
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0
" WIDTH="100%" HEIGHT="100%">
<PARAM NAME=movie VALUE="intro_sspr.swf"> <PARAM NAME=loop VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=scale VALUE=noborder> <PARAM NAME=salign VALUE=B> <PARAM NAME=wmode VALUE=opaque> <PARAM NAME=bgcolor VALUE="#000000"> <EMBED src="intro_sspr.swf" loop=false quality=high scale=noborder salign=B wmode=opaque bgcolor="#000000" WIDTH="100%" HEIGHT="100%" TYPE="application/x-shockwave-flash" PLUGINSPAGE="
http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT>
-------------------------
change it like this
-----------------
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0
" WIDTH="600" HEIGHT="400">
<PARAM NAME=movie VALUE="intro_sspr.swf"> <PARAM NAME=loop VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=scale VALUE=noborder> <PARAM NAME=salign VALUE=B> <PARAM NAME=wmode VALUE=opaque> <PARAM NAME=bgcolor VALUE="#000000"> <EMBED src="intro_sspr.swf" loop=false quality=high scale=noborder salign=B wmode=opaque bgcolor="#000000" " WIDTH="600" HEIGHT="400"> TYPE="application/x-shockwave-flash" PLUGINSPAGE="
http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT>
--------------------
i got the width and height of ur movie its 600 X 400, i think for netscape u hav to keep this dimension, or may be u hav to make a new movie for netscape.
wht i did for similar issue. i had made one flash file of dimension somewht 780 X 385. then made 2 htm files one for IE and other for Netscape, for ie fixed the dimension in % and for netscape fixed the dimension in pixels. Then redirected the page from index page.[ u will get this option in dreamweaver itself]
also i noticed that there is no loading script for ur movie, for movies above 30 kb u hav to add loading script.
add this script--
1. make a separate scene before ur movie scene
2. first frame add this script
--------
if (Number(_framesloaded) == Number(_totalframes)) {
play();
} else {
stop();
}
---------
AnishVarghese