Justin... Bah.. might as well give him a code example <!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> <title></title> <script language="Javascript"> // get screen size var x, y, z; if (self.innerHeight) // all except Explorer { x = self.innerWidth; y = self.innerHeight; } else { // Explorer 6+ Strict Mode x = screen.width; y = screen.height; } resizeTo(x, y); moveTo((window.width-x)/2,(window.height-y)/2); document.location.href = 'http://www.google.com'; </script> </head> <body> </body> </html> On Wed, Apr 14, 2010 at 2:36 PM, Justin Nichols <[email protected]>wrote: > I'm pretty sure you can just set the width and height to 100% in the object > wrapper. > > Thanks, > > Justin Nichols > > > On Apr 14, 2010, at 2:32 PM, Eric DeCoff wrote: > > tjones, > > You can use the wrapper to launch your app in full screen mode... > > > > > On Wed, Apr 14, 2010 at 2:30 PM, <[email protected]> wrote: > >> The HTML that wraps the flex application usually requires a width and a >> height. >> >> Is it possible to make the object wrapper for my flash application use the >> full width of the browser? >> > > > > -- > Eric R. DeCoff > Changing the world, > 1 line of code at a time > > > -- Eric R. DeCoff Changing the world, 1 line of code at a time
