Volledige versie bekijken : site over de volledige browser weergeven.
woesj
%Europe/Berlin %847 %2005, 21:20
Hoi
Ik heb een site gemaakt in flash en geëxporteerd in een html file, als ik de html file open blijft er een witte rand zichtbaar in internet explorer. Wat ik ook verander aan de export settings, die witte rand blijft. Weet iemand hoe ik dit kan oplossen?
mvg
WOESJ :D
Laiverd
%Europe/Berlin %943 %2005, 23:38
http://www.moock.org/webdesign/flash/fillthewindow.html
woesj
%Europe/Berlin %700 %2005, 17:48
solutions
if you want to get rid of the gutter shown above, you can use one of three solutions that work to varying degrees across the different browsers. the first two solutions use body margins and frames to remove the gutter. in both of those solutions you will still have to set the embed/object tag options of your movie to get your movie to appear the way you want it to. the embed/object options are:
HEIGHT="100%" WIDTH="100%" SCALE="EXACTFIT"
this combination forces every edge of your movie to the edge of the browser, and distorts your movie to fit the aspect ratio (proportion of height to width) of the browser.
HEIGHT="100%" WIDTH="100%" SCALE="SHOWALL"
this combination fits the width or height of your movie to the smaller of either the width or height of the browser. your movie will not be cropped or skewed to fit the browser window, but there will be borders on either the top and bottom or right and left of your movie.
HEIGHT="100%" WIDTH="100%" SCALE="NOBORDER"
this combination adjusts either the height or width of your movie to the larger of either the width or height of the browser. when the dimensions of your movie do not match the dimensions of the browser, your movie will be cropped on either the top and bottom or on both sides.
with those options set, your embedded movie code will look something like this:
<OBJECT
CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
WIDTH="100%"
HEIGHT="100%"
CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
<PARAM NAME="MOVIE" VALUE="moviename.swf">
<PARAM NAME="PLAY" VALUE="true">
<PARAM NAME="LOOP" VALUE="false">
<PARAM NAME="QUALITY" VALUE="high">
<PARAM NAME="SCALE" VALUE="showall">
<EMBED
SRC="yourmovie.swf"
WIDTH="100%"
HEIGHT="100%"
PLAY="true"
LOOP="false"
QUALITY="high"
SCALE="showall"
PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=Shockwaveflash">
</EMBED>
</OBJECT>
Hoe pas ik dit toe??
vBulletin® v3.8.1, Copyright ©2000-2012, Jelsoft Enterprises Ltd.