I-Spy Game

M. Lim
Intro to Programming
1 min readFeb 14, 2019

We are building an I-Spy game for the KidsTek gala!

See this example I made

Your Task

Each person will create 3 game screens aka “levels” (more if you want!)

⭐ To create a custom app, go to https://studio.code.org/projects and click “App Lab”

Each screen should have:

  • An full-screen image with many different visual elements. You can draw this by hand and then upload a picture of it, make a collage in MS paint, or get one from the internet. It should be a SINGLE IMAGE — you should NOT add a bunch of images to the screen because that will slow down the app!
  • Text that tells the player what to find in that image.
  • A transparent element over the part of the image that the player is supposed to click.

Keep score

  • Use a score variable that increases every time the correct spot is clicked, and decreases the score if the player clicks anywhere else.
  • Display the score somewhere on the screen.

When the player passes the last level, go to a final screen that says YOU WIN!

--

--