Lessons Learned So Far
- The AppletViewer cannot recognize any capitalized HTML tags.
- You can drag and drop html files onto the Applet Viewer, but not .class files.
- This version of the JDK 1.0 Beta only does applets not applications (except for very simple ones).
- Use the viewer to view your pages to see if the applets will run while embedded in the html.
- A good approach is to copy-and-modify existing applets and substitute your own images or text.
- You can use the Applet Viewer to see all (or many) of those applets out there for Windows & Sun by opening the URLs with it.
- Parameters can be passed with the html code to the applet or hardwired into the java code.
- You can write a perfectly good applet and the Applet Viewer still may be unable to view it.
- The corrollary is that just because it won't work in the Applet Viewer doesn't mean there is something wrong with your applet.
- The AppletViewer honors the resize() function, but Netscape doesn't.
- The default background color of an applet is the same grey as most browser default backgrounds.
- Text or images can be inserted between the <applet> and </applet> tags to show up only if the User doesn't have a Java-enabled browser.
Back to MacJava