Hidden Pictures Game
In this assignment, you will use the Screens sheet to help you make a series
of levels.
1. Open the code you typed in for your Screen assignment.
2. In the screen1 method, put the code to make a screen like this. Choose your
own pictures.

3. In actionPerformed, if the actionCommand is 2 -
- pull out the information from the textareas.
- check if the information is right.
- if it is right, make a dialog box that says so AND open screen 2.
- if it is wrong, make a dialog box that say so.
Dialog Box Code:
- JOptionPane.showMessageDialog (null, "Some of the Positions were incorrect.
Try again.", "You didn't get them all!", JOptionPane.ERROR_MESSAGE);

- JOptionPane.showMessageDialog (null, "You got them all! Well Done.
Move to Level 2", "You got it!", JOptionPane.INFORMATION_MESSAGE);

4. Make screen2 (Level 2). For example:

5. Make screen3 (Level 3).
6. Make a final screen that tells the user they won. Allow them to play again.