PDA

For continued disscussion on this topic : Help!!! Hover Button



JadaMax
07-01-2000, 10:23 PM
when i click this java thing:

<applet code="fphover.class" width="125" height="30">
<param name="text" value="Home">
<param name="color" value="#000000">
<param name="hovercolor" value="#00ff00">
<param name="textcolor" value="#ffffff">
<param name="effect" value="reverseglow">
<param name="url" value="my url" valuetype="ref">
<param name="target" value="main">
<param name="font" value="arial">
<param name="fontstyle" value="bold">
<param name="fontsize" value="18">
<param name="hoversound" value="drip.au" valuetype="ref"
</Applet>
i need to configure this so it opens a new window thats does this stuff:
toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=ye s,width=100,height=100

Vincent Puglia
07-02-2000, 02:39 AM
Hi jadaMax,

what do you mean by "configure this...". The code you show is from a java applet. Java applets are self-contained compiled programs. You cannot add anything to them that does not already exist. The only things you can add are in the "param" (parameter/argument) list. So, you cannot configure it to add window parameters. It wouldn't know what to do with them.
So, are you asking what it says? Or do you want to know how to use that applet in your html page?

Vinny