How to get Applet size
I have an applet loaded into an HTML page like this:
<HTML>
<HEAD>
</HEAD>
<BODY BGCOLOR="000000">
<CENTER>
<APPLET
code="TextEditor.class"
width="100%"
height="100%"
>
</APPLET>
</CENTER>
</BODY>
</HTML>
How can I get the length and width of the applet for the java program since it could vary with window size?
Message was edited by:
jkhoa

