Customize the browser window?

liunx

Guest
Hi,<br />
How could i customize the window that shows my image file:<br />
Following tag shows the image in a full browser window. i just need to make it smaller with no manubar.<br />
<br />
<A target="_TOP" HREF=http://www.htmlforums.com/archive/index.php/"myimage.gif" >image</A> <br />
<br />
<br />
<br />
Note that: i tried following with no success (dosn't work)<br />
<br />
<A target="_TOP" HREF=http://www.htmlforums.com/archive/index.php/"javascript:openWin('myimage.gif','width=200,height=200,screenX=20,left=220,screenY=50,top=200,status =no,toolbar=no,directories=no,scrollbars=yes,resizable=yes,menubar=no,location=no')" > image<A><!--content-->if you mean you want to open it in a popup try here (<!-- m --><a class="postlink" href="http://www.dhtmlshock.com/window-scripts/opencenterpopup/default.asp">http://www.dhtmlshock.com/window-script ... efault.asp</a><!-- m -->) :)<!--content-->Works perfect. Tons of thanks man.<!--content-->Originally posted by chadorbaf <br />
Hi,<br />
How could i customize the window that shows my image file:<br />
Following tag shows the image in a full browser window. i just need to make it smaller with no manubar.<br />
<br />
<A target="_TOP" HREF=http://www.htmlforums.com/archive/index.php/"myimage.gif" >image</A> <br />
<br />
<br />
<br />
Note that: i tried following with no success (dosn't work)<br />
<br />
<A target="_TOP" HREF=http://www.htmlforums.com/archive/index.php/"javascript:openWin('myimage.gif','width=200,height=200,screenX=20,left=220,screenY=50,top=200,status =no,toolbar=no,directories=no,scrollbars=yes,resizable=yes,menubar=no,location=no')" > image<A> <br />
just so you know, that would have worked excpet you didn't use it right.<br />
<br />
<br />
A HREF=http://www.htmlforums.com/archive/index.php/"javascript:window.open('myimage.gif','',<br />
'width=200,height=200,screenX=20,left=220,screenY=50,top=200,status=no,toolbar=no,directories=no,scr ollbars=yes,resizable=yes,menubar=no,location=no')" > image<A><br />
<br />
you were calling openWin() which would have been a function that they had.<!--content-->Scott,<br />
To tell you truth, i tried both (window.open & openWin) with no success<!--content-->my bad, this would have worked.<br />
<br />
A HREF=http://www.htmlforums.com/archive/index.php/"javascript:void(0)" onclick="window.open('myimage.gif','',<br />
'width=200,height=200,screenX=20,left=220,screenY=50,top=200,status=no,toolbar=no,directories=no,scr<br />
ollbars=yes,resizable=yes,menubar=no,location=no')" > image<A><br />
<br />
and it is Scoutt not scott ;)<!--content-->Scoutt,<br />
Ok man, thanks for the first one & sorry for the second.<!--content-->
 
Back
Top