Applet icon & status bar  
Author Message
circuit_breaker





PostPosted: 2003-8-6 21:30:00 Top

java-programmer, Applet icon & status bar Hi,

I have an applet that extends a JFrame. How can I change or remove
the java icon in the upper-left corner and the status bar "Java Applet
Window" ?

Thanks
 
nobody





PostPosted: 2003-8-6 23:21:00 Top

java-programmer >> Applet icon & status bar email***@***.com (circuit_breaker) writes:
> Hi,
>
> I have an applet that extends a JFrame. How can I change or remove
> the java icon in the upper-left corner

See the API documentation. setIcon ...

> and the status bar "Java Applet
> Window" ?

This is a security measure. Sign the applet, then it should go away.

/Thomas
 
Cyril Mrazek





PostPosted: 2003-8-7 2:15:00 Top

java-programmer >> Applet icon & status bar see setIconImage() method.

Cyril Mrazek


On Wed, 6 Aug 2003 15:20:39 +0000 (UTC), email***@***.com
(Thomas Weidenfeller) wrote:

>email***@***.com (circuit_breaker) writes:
>> Hi,
>>
>> I have an applet that extends a JFrame. How can I change or remove
>> the java icon in the upper-left corner
>
>See the API documentation. setIcon ...
>
>> and the status bar "Java Applet
>> Window" ?
>
>This is a security measure. Sign the applet, then it should go away.
>
>/Thomas