# Fullscreen + Embed Issue in Firefox

**URL:** https://forum.kirupa.com/t/fullscreen-embed-issue-in-firefox/203436
**Category:** flash
**Created:** [October 11, 2006, 2:56am UTC](https://forum.kirupa.com/t/fullscreen-embed-issue-in-firefox/203436 "2006-10-11T02:56:51Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jillymo](https://avatars.discourse-cdn.com/v4/letter/j/5f9b8f/32.png) [@jillymo](https://forum.kirupa.com/u/jillymo)
#### Post date: [October 11, 2006, 2:56am UTC](https://forum.kirupa.com/t/fullscreen-embed-issue-in-firefox/203436/1 "2006-10-11T02:56:51Z")

</div>

I am using this code for a fullscreen flash page, which is working fine in IE. I am using the javascript fix so that I don’t have the embed (gray box) issue, but now I am not able to get the fullscreen to work in Firefox. The only suggestions I have found on fixing the issue refer to pre-embed issue fixes and I am not figuring out how to work this in to my current code.

This is what I have:

```auto
<!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=iso-8859-1" />
<script type="text/javascript" language="JavaScript1.2" src="flashobject.js"></script>
<style type="text/css"> 
<!-- 
body { 
height: 100%; 
width: 100%; 
margin: 0; 
} 
--> 
</style> 
<title>CBS: Who We Are</title>
</head>

<body>
<div id="firstflash">
This text gets replaced by the swf file if the user has Flash installed.
</div>
<script type="text/javascript">
 var fo = new FlashObject("http://www.cbservices.org/cbs/test/jill/CBS/CBSwhoweare.swf", "firstflash", "100%", "100%", "8", "#003366");
   fo.addParam("quality", "best");
   fo.addParam("scale", "noscale"); 
   fo.write("firstflash");
</script>
</body>
</html>

```

These are the threads I have found with advice getting Full Screen in firefox:

> **[100% flash movie in Firefox 1.0](https://www.kirupa.com/forum/showthread.php?t=76649&page=1&highlight=window+component)**
>
> Got a web design/development question or just want to hang out with the most awesome people on the planet? Drop on in!

  

> **[Fullscreen problem](https://www.kirupa.com/forum/showthread.php?t=223132&highlight=full+screen+firefox)**
>
> Got a web design/development question or just want to hang out with the most awesome people on the planet? Drop on in!

Can someone please give me a clue how to work a solution into the code I am using?
