Adjusting blank window sizes

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Adjusting blank window sizes

    Hello-

    I am trying to create a blank window that is exactly the size of the layer and
    image it contains. I have checked the help files and have messed with the
    property fields and have been unable to achieve the desired size. It seems to
    work ok when I test it in dreamweaver, but when I try the link from the parent
    page, the window automatically adjusts to the parent window size. The link is
    set as a "blank" window. Any help is appreceiated...

    Thanks

    Lets go for the last Guest

  2. Similar Questions and Discussions

    1. Go to URL open in blank window HELP!
      Hi, Why cant I specify a new or blank browser window when usin dreamweaver's "Go To URL" behaivour? If i go into the code and replace...
    2. adjusting image sizes
      it doesn't work because once the image loaded in the clip, the clip still conserve his beginning's property (height & widht) :( ademus@free.fr
    3. GetURL window sizes
      Hey, i've been trying to create a pop-up window of a fixed size, to display photos but i didn't know how to do it. I looked through these forums, and...
    4. goToNetPage in a blank window
      Hi there, I have a Behaviour (goToNetPage) for a hyperlink, but I want the hyperlink to open in a blank browser window. I tried inserting some...
    5. Automatic imaging resizing for different window sizes?
      Tried searching but not found anything suitable. Basically i have a rectangle with a "hatch5" fill, exported to a gif file which i use as a...
  3. #2

    Default Re: Adjusting blank window sizes

    > I am trying to create a blank window that is exactly the size of the
    layer and
    > image it contains. I have checked the help files and have messed with the
    > property fields and have been unable to achieve the desired size. It seems
    to
    > work ok when I test it in dreamweaver, but when I try the link from the
    parent
    > page, the window automatically adjusts to the parent window size. The link
    is
    > set as a "blank" window. Any help is appreceiated...
    if targetting a window, you have no control over it at all. If you want
    control, you need to launch the window via javascript:


    <a href="page.html" onClick="window.open('page.html', 'windowname',
    'toolbar=no,location=no,directories=no,status=no,m enubar=no,scrollbars=yes,r
    esizable=yes,copyhistory=no,width=300,height=290') ;return false;">Text
    Link</a>

    -Darrel


    darrel 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