Oh ok...you need to use scale="exactfit"...
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" WIDTH="400" HEIGHT="200"> <PARAM NAME=movie VALUE="Images/Directions/map.swf"> <PARAM NAME=scale VALUE="exactfit"> <EMBED src="Images/Directions/map.swf" WIDTH="400" HEIGHT="200" TYPE="application/x-shockwave-flash" SCALE="exactfit" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"> </EMBED> </OBJECT>
That should do it for you.
Please help me to view an .swf video in fullscreen mode by default. When the user clicks on the video_link, the video should open in full screen mode. Thanks in advance, below is my code.
<div id="bottomContentVideo">
<a id="video_link" href="#video">
<img name="Video Screenshot" src="images/video-screenshot.jpg">
</a>
<!--<div id="video" style="width:402px;height:344px;"></div>-->
<div style="DISPLAY: none;" id="video">
<object codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle" width="402" height="344">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="http://www.visionsserviceadventures.com/video/visions_video.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#ffffff">
<param name="allowFullScreen" value="true">
<param name="wmode" value="opaque">
<param name="scale" value="exactfit">
<embed src="http://www.visionsserviceadventures.com/video/visions_video.swf" quality="high" align="middle" bgcolor="#ffffff" width="402" height="344" wmode="opaque" allowFullScreen="true" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" SCALE="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer">
</object>
</div>
</div>