Very basically, an applet is a small program that can be sent along with a Web page to a user. Java applets can perform interactive animations or other simple tasks. The
size of the applet affects loading time. The larger the applet, the
slower it is to load. And people who do not have their Java enabled
in their browser won't be able to see your applet.
To customize your applet using your own image, you must change the width in the applet code to equal the width of your image and the height to equal the height of your image, times 2, minus 10. For example, the size of the image used here was 203 by 121 pixels. So, you can see in the applet code that the width is 203 and the height is 121 times 2=242 minus 10=232. There you have it. Pretty EZ, huh? When you get your applet working on your page, e-mail your URL to me so I can take a peek. Emerald@netez.com
|