Hello, I am currently designing an interactive flash movie that will be run on it's own console. by console, i mean it will be the only program run on the touch-screen system/device. My question: How can I have the index html load into an "absolute" full screen? I know F11 open's full screen, but the address and title bar still appear when you have the cursor near the top of the screen. I'm looking for a way to open the kind of full screen where you have to hit a specific key command to exit full screen. like when you hit alt+enter while playing video games...... If the code has to refer to some sort of link, like "start movie" or something, I would be okay with this. My goal - I don't want to see any title bars or anything.
A javascript solution... window.open( 'url.htm', 'windowname', 'options'); the options include width = #, height = #, top (for IE) / ScreenY (for NS) = #, left (for IE) / Screenx (for NS) = #, scrollbars, location, resizable, status, toolbar, menubar, fullscreen only the ones you specifically list, are used. so if you use window.open('url.htm', 'windowname', 'scrollbars,resizable,status,toolbar,menubar'); then you'll have a window, with no location/address bar