Quick Question. How page size

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Quick Question. How page size

    How do you make your page to go full screen whenever someone visits it. You know how you go to a website and then it takes your page full screen. how do you do that.

    Thanks
    BrentRyanGreen Guest

  2. Similar Questions and Discussions

    1. shortcut/quick key conflict= transforming objects/size-scale
      I'm making the switch to InDesign from QXP. My trouble is learning the Shortcuts "Keys for transforming objects" (under the help menu). Under this...
    2. need help quick - doc size half ltr. needs to be ltr. size on pdf
      Hi, I layout book interiors at half letter size, 5.5" W x 8.5" H in indesign. i have a job option from my printer setting default size to 8.5 x 11....
    3. Physical Page Size question
      We are having a problem with printing PDFs from the web on one of our PC's. It's very slow and the reason is the size of the files is huge compared...
    4. Page Size Question?
      Hi, Thanks for any suggestions. Im a little confused about the page size settings in Dreamweaver MX. My thoughts were it would be best to make...
    5. QUICK SSA QUESTION
      AIXers, I'm looking for a quicker way to determine the physical locations of ssa drives in a SSA drawer w/o having to use diag/ssa service aides...
  3. #2

    Default Re: Quick Question. How page size

    ..oO(BrentRyanGreen)
    >How do you make your page to go full screen whenever someone visits it.
    >You know how you go to a website and then it takes your page full
    >screen. how do you do that.
    You resize _your_ browser to the size you prefer. Don't try to
    manipulate the user's browser.

    Micha
    Michael Fesser Guest

  4. #3

    Default Re: Quick Question. about page size

    Check out these sites. That is what I am talking about.

    [url]http://www.angelsandairwaves.com[/url]
    [url]http://www.stephanesednaoui.com/[/url]
    BrentRyanGreen Guest

  5. #4

    Default Re: Quick Question. about page size

    ..oO(BrentRyanGreen)
    >Check out these sites. That is what I am talking about.
    >
    >[url]http://www.angelsandairwaves.com[/url]
    >[url]http://www.stephanesednaoui.com/[/url]
    There's no content on these sites.

    But resizing a browser window requires JavaScript and a browser that
    will allow it. In recent browsers you can prevent scripts from doing
    this, because it's rude.

    Micha
    Michael Fesser Guest

  6. #5

    Default Re: Quick Question. about page size

    What do you mean no content on these sites?

    Anyways, can someone tell me how to do it?

    Thank you
    BrentRyanGreen Guest

  7. #6

    Default Re: Quick Question. about page size

    I went to the 2nd link, click on the really annoying flashing images and from
    that page (the one that opens fullscreen) I did a view source and found this...

    <SCRIPT LANGUAGE="JavaScript">

    function maximizeWin() {
    if (window.screen) {
    var aw = screen.availWidth;
    var ah = screen.availHeight;
    window.moveTo(0, 0);
    window.resizeTo(aw, ah);
    }
    }
    function reScale() {
    if (window.screen) {
    var aw = screen.availWidth;
    var ah = screen.availHeight;
    window.resizeTo(aw, ah);
    }
    }

    function vidpop(whichvid) {

    window.open(whichvid,'','toolbar=no,location=no,di rectories=no,status=no,menuba
    r=no,scrollbars=yes,resizable=yes,');
    }
    </SCRIPT>
    </HEAD>
    <BODY bgcolor="#FFFFFF" marginheight="0" marginwidth="0"
    onLoad="maximizeWin();" onFocus="reScale();">

    Is that what you meant?
    btw I agree with Micha, if you are opening a new window (i.e. a popup window)
    for your site then by all means size it as you want BUT if you are using the
    users current browser window... leave it the size that they had it! To do
    otherwise is plain rude.
    The way that stephanesednao***** does it is acceptable (the flashy image /
    intro window stays the same size but the newly launched site goes fullscreen).
    You'll still have problems with popup blockers though.

    regards
    Andy

    byardaj Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139