var popDialogOptions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mr Pheer
    So Fucking Banned
    • Dec 2002
    • 22082

    #1

    var popDialogOptions

    What do i use to make it open fullscreen?

    var popDialogOptions = "dialogWidth:800px; dialogHeight:900px; dialogTop:0px; dialogLeft:0px; edge:Raised; center:0; help:0; resizable:1; scroll:1; status:0";
  • SmokeyTheBear
    ►SouthOfHeaven
    • Jun 2004
    • 28609

    #2
    fullscreen=yes
    hatisblack at yahoo.com

    Comment

    • Mr Pheer
      So Fucking Banned
      • Dec 2002
      • 22082

      #3
      I know that would work with popWindowOptions, but this seems to override it

      Comment

      • SmokeyTheBear
        ►SouthOfHeaven
        • Jun 2004
        • 28609

        #4
        Code:
        <a href="big.html" onclick="window.open('big.html', 'big',
        'fullscreen=yes'); return false;">big</a>
        hatisblack at yahoo.com

        Comment

        • Mr Pheer
          So Fucking Banned
          • Dec 2002
          • 22082

          #5
          Originally posted by SmokeyTheBear
          Code:
          <a href="big.html" onclick="window.open('big.html', 'big',
          'fullscreen=yes'); return false;">big</a>
          thats not what I'm working with here, I'm using popDialogOptions

          Comment

          • AgentCash
            Confirmed User
            • Feb 2002
            • 720

            #6
            var width = screen.width;
            var height = screen.height;
            var popDialogOptions = "dialogWidth:"+width+"px; dialogHeight:"+height+"px; dialogTop:0px; dialogLeft:0px; edge:Raised; center:0; help:0; resizable:1; scroll:1; status:0";

            Comment

            • Mr Pheer
              So Fucking Banned
              • Dec 2002
              • 22082

              #7
              Originally posted by AgentCash
              var width = screen.width;
              var height = screen.height;
              var popDialogOptions = "dialogWidth:"+width+"px; dialogHeight:"+height+"px; dialogTop:0px; dialogLeft:0px; edge:Raised; center:0; help:0; resizable:1; scroll:1; status:0";
              Dude, you rock!!

              Thanks

              Comment

              • SmokeyTheBear
                ►SouthOfHeaven
                • Jun 2004
                • 28609

                #8
                You could also set the size in the window that pops up.

                Code:
                <SCRIPT LANGUAGE="JavaScript1.2">
                if(navigator.appName.indexOf("Explorer") != -1){self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);}
                </SCRIPT>
                hatisblack at yahoo.com

                Comment

                • Mr Pheer
                  So Fucking Banned
                  • Dec 2002
                  • 22082

                  #9
                  Smokey, teach me that cool yahoo profile thing you do

                  Comment

                  Working...