Results 1 to 4 of 4

Thread: Full Screen IE

  1. #1

    Thread Starter
    Hyperactive Member vbud's Avatar
    Join Date
    Jan 2002
    Location
    Mru 20 17S, 57 33E Goal: Get out of the BOX Status: In The Shadows!!! Target Posts: 3,000,000,000
    Posts
    378

    Full Screen IE

    Hi everybody

    does anyone know how I can display my ASP pages in full screen mode in Internet Explorer?

    All help appreciated

    Thanx.
    >!v!<
    Free your mind, stop thinking
    http://inspirone.blogspot.com

    Please rate this post if it helped you

  2. #2
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861
    what do you mean by "Full Screen Mode"???
    I am assuming maximizing your browser isn't the answer you are looking for?
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

  3. #3
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    I have the code/html at home. If you haven't gotten your answer by the time I get there, then I will post it.

  4. #4
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    Use some javascript like this.. or a variation of it.
    Code:
    var height = window.screen.height;
        var width = window.screen.width;
        var dimensions = "height = " + eval(height + 10) + ", width = " + eval(width + 30);
        
        mwindow = window.open("blank.htm", "mwindow", dimensions);
        mwindow.document.open("text/html", "replace");
        
        var i;
        var timer = 0;
        
        if(mwindow.moveTo)
            mwindow.moveTo(-10, -30);
        if(mwindow.resizeBy)
            mwindow.resizeBy(0, 50);

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width