Question 1: Reading Parameters from an HTML file.
Question 2: Change the HelloWorld applet from question 1, so that the string message being displayed is displayed in the Helvetica font, and is bold and in point size 18. You can either do this by using PARAMeters or hardcoding it in the program.
Question 3: The following questions are about the HelloAnim applet:
HINT: use the mouseEnter(Event event, int x, int y) and mouseExit(Event event, int x, int y) methods, but ignore their arguments. Events will be the topic of next week's lecture.
By now, your applet should look something like the following:
Question 4: Double Buffering.
Change the HelloWorld applet from question 1, so that the string message is drawn over a background image. The applet should load and draw the image using double buffering. Your applet should work as follows: when the image is not yet loaded, then only the string should be drawn on the screen (at location (150,125). When the image is loaded, then the image should be drawn on the screen, and then the text string at location (50,125). The width of your applet (in the HTML-file) and offscreen image should be 300 pixels. The height of your applet and offscreen image should be 250 pixels.
The image you should use is: HELLO.GIF (in Netscape, you can save the image by clicking the right mouse button on it and choosing Save this image as... from the popup menu).
Your applet should look like: HelloLab.