Click to See Complete Forum and Search --> : full-screen flash
Brett
08-24-2000, 12:18 AM
Flash Question:
How does one make the Flash file full-screen in the browser, ie, all the
way from the left browser window margin to the right and also rescale on
browser resize?
Thanks.
"Brett" <brettstil@yahoo.com> wrote:
>
>Flash Question:
>
>How does one make the Flash file full-screen in the browser, ie, all the
>way from the left browser window margin to the right and also rescale on
>browser resize?
>
>Thanks.
>
Try this, I'm not 100% sure it will work:
Full-screen:
for IE: <BODY topmargin="0" leftmargin="0">
for Netscape: marginheight="0" marginwidth="0"
Rescale:
put the flash-file in a table.
<TABLE width="100%" height="100%">
Hope it works...
RR
Phil Weber
08-24-2000, 11:38 AM
> How does one make the Flash file full-screen in the browser,
> i.e., all the way from the left browser window margin to the
> right and also rescale on browser resize?
Brett: Simply define the Flash object to be 100% of the browser's height and
width:
' In IE...
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
WIDTH=100% HEIGHT=100% ...etc.>
' Netscape...
<EMBED SRC="filename.swf" WIDTH=100% HEIGHT=100% ...etc.>
---
Phil Weber
Joo Hang Cha
08-27-2000, 05:27 PM
Set all the margins to 0 then add your flash file with:
<object width="100%" height="100%"></object> (etc)
and <embed width="100%" height="100%"></embed> (etc)
Dave Passmore
08-27-2000, 10:27 PM
The last post are right on the money. Under File\Publish Settings, you will
see these settings on drop-down menus. When you publish your movie, Flash
will put the very code the previous posts described into you HTML. Use CSS
to set the margin to zero, also.
devx.com
Copyright WebMediaBrands Inc. All Rights Reserved