Click to See Complete Forum and Search --> : Need more help..new window


kennypooh
03-06-2003, 06:37 PM
If anyone can help, please?
I used 1 cool button tool to make this menu app.
I used _blank to open url in new popup window, but how to resize the new window and other properties, like scrollbar or not and resizable window etc.
Thanks,
Ken
--------------------------------------
<applet name="dings" code="BtnPlayer.class" codebase="." alt="dings Navigation" archive="BtnPlayer.jar" width="300" height="300">
<param name="cabbase" value="BtnPlayer.cab">
<param name="p" value="1,0,1,808080,-1,.,0,0,0,.,.,.">
<param name="b0" value="56,14,120,40,1,0,0,2,4,4,5,^4,^192,^1,^12,^0,^1,^40,^25,^1,^0,^40,^25,^.,^.,^Button 1,^.,http://liquidweb.com,_blank,Button 1,.,ff,ff0000,ff0000,^ffffff,^ff0000,^.">
<param name="r" value="39d827ac">
<param name="c" value="255de4ba">
<map name="dings">
<area shape="rect" alt="Button 1"

*** THIS IS THE LINK

href="http://liquidweb.com" target="_blank" coords="56,14,176,54">


</map>
<img usemap="#dings" src="dingsMap.jpg" width="300" height="300" alt="dings Image Map" border="0">
</applet>

pyro
03-06-2003, 08:21 PM
Something like this:

href="http://liquidweb.com" onClick="window.open(this.href,'winname','width=400,height=300'); return false;" coords="56,14,176,54">

and just add more properties after the height, if you want...

kennypooh
03-07-2003, 11:38 AM
Pyro,

I just tried that but it didn't work.
Thanks though, I appreciate it.

Anybody else?