Discussion:
Full screen option
(too old to reply)
pete.allen@btinternet.com
2009-03-19 23:59:54 UTC
Permalink
Hi probably a simple question but how do I get my Flash video to fill a user
browser when it opens, the example I am trying to replicate is the following:-
http://www.goldfrapp.co.uk/

I have been trying for ages but with no joy so any help will be grateful.

Thanks
Peter
Gipoh
2009-03-20 13:31:36 UTC
Permalink
Hi there,
First of all you need to put width:100% and height:100% in the html of the
page. Like that it will fill the screen. If you want to let flash scale with
the window you do nothing in flash if you dont you have to put:

Stage.align = "TL"; // Left top alignment
Stage.scaleMode = "noScale"; // Dont scale flash

Greetings Guido
[hr]http://www.grafia.fr/ | http://www.missechantillons.fr/ |
http://www.rouedescadeaux.com | http://www.tvsoiree.fr/
pete.allen@btinternet.com
2009-03-20 22:03:14 UTC
Permalink
Thanks for the reply, have done what you say but its not getting a full screen
please see enclosed link : http://bunnymen.com/Bunnymen3/INTRO.htm

Also when I view it in Firefox it just reduces to a small size & when viewed
in Opera it just loads about a third of the screen.

Any help would be very grateful, I have also enclosed my code from Dreamweaver:




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</script>
</head>

<body>
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
width="100%" height="100%">
<param name="movie" value="INTRO.swf" />
<param name="quality" value="low" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to
download the latest version of Flash Player. Delete it if you don?t want users
to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<param name="SCALE" value="noborder" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC.
-->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="INTRO.swf" width="640"
height="480">
<!--<![endif]-->
<param name="quality" value="low" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<param name="SCALE" value="noborder" />
<!-- The browser displays the following alternative content for users with
Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash
Player.</h4>
<p><a href="http://www.adobe.com/go/getflashplayer"><img
src="Loading Image..."
alt="Get Adobe Flash player" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
<script type="text/javascript">
<!--
swfobject.registerObject("FlashID");
//-->
</script>
</body>
</html>

Loading...