req help: make page open 'itself' without toolbars

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • net

    req help: make page open 'itself' without toolbars

    I know how to make a page open itself at a certain size and location - I
    use:

    <html>
    <head><script language="Javas cript">
    window.resizeTo (370,220);
    window.moveTo(1 0,10);
    </script>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFF F" text="#000000">
    page content here</body>
    </html>.

    Problem is, this page opens with
    toolbar,locatio n,directories,s tatus,menubar,s crollbars etc, which I don't
    want. What extra script do I need that will make this same page open without
    the toolbar,locatio n,directories.. .etc.
    Please note: this page isn't going on the internet, it's for personal use so
    no-one's going to be pissed off with having their browser altered. I've also
    tried lots of scripts so far but they all open another window in one way or
    another which is unsuitable. I just seek script to add to the above so the
    page creates itself without all the gumf.
    Thanks for any help.


  • HikksNotAtHome

    #2
    Re: req help: make page open 'itself' without toolbars

    In article <1062849564.258 73.0@ersa.uk.cl ara.net>, "net" <nospam@nospam. org>
    writes:
    [color=blue]
    >
    >I know how to make a page open itself at a certain size and location - I
    >use:
    >
    >
    ><head><scrip t language="Javas cript">
    >window.resizeT o(370,220);
    >window.moveTo( 10,10);
    ></script>
    >
    ></head>
    >
    >page content here
    >.
    >
    >Problem is, this page opens with
    >toolbar,locati on,directories, status,menubar, scrollbars etc, which I don't
    >want. What extra script do I need that will make this same page open without
    >the toolbar,locatio n,directories.. .etc.
    >Please note: this page isn't going on the internet, it's for personal use so
    >no-one's going to be pissed off with having their browser altered. I've also
    >tried lots of scripts so far but they all open another window in one way or
    >another which is unsuitable. I just seek script to add to the above so the
    >page creates itself without all the gumf.
    >Thanks for any help.[/color]

    The only way to open the browser via script without all the "chrome" that you
    don't want is via the window.open call. Open a new window without the chrome,
    close the original. Once the window is open, script has no ability to remove
    the toolbars,menuba rs, etc.

    --
    Randy

    Comment

    Working...