PDA

View Full Version : Full Screen Problem


victorysshadow
04-09-2003, 07:17 PM
I want to be able to maximize my swf from my flash player so that it is full screen. When I do this though I get two bars on the left and right. Is there anyway to do this so that it resizes and fits to the screen without those bars on the sides? Probably meaning that it stretches a little...

thanks

vshadow

Warrior
04-11-2003, 11:13 PM
Do you want it to be fullscreen or do you just want to take out the margins on the right and left?

Can you explain a little bit more?

victorysshadow
04-12-2003, 04:03 AM
I just want to get rid of the margins.

vshadow

Warrior
04-12-2003, 04:41 AM
Put this code between the <head> of your html </head> like so,

<body topmargin="0"leftmargin="0"rightmargin="0"bottommargin="0">
<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="Movie1.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=scale VALUE=noborder>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="Movie1.swf" quality=high scale=noborder bgcolor=#FFFFFF WIDTH=100% HEIGHT=100% TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</object>
</body>

Change the "Movie1.swf with your flash movie. Ignore the BigSmile at the top because the code that I am giving you has the same meaning for the BigSmile in here. It is suppose to be

: [followed by] D
I have attached a file for you in here to look at and copy the code.

I hope this helps you :cool:

Warrior
04-12-2003, 04:48 AM
HTML for you to look at.