Loading full screen

Discussion in 'HTML & Website Design' started by rbx, Sep 7, 2008.

  1. #1
    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.
     
    rbx, Sep 7, 2008 IP
  2. Kurg

    Kurg Member

    Messages:
    260
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    33
    #2
    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
     
    Kurg, Sep 7, 2008 IP
  3. rbx

    rbx Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thank you so much for the fast response!!!!!!!!
     
    rbx, Sep 7, 2008 IP