Yippee! My first project is almost complete! I was having a terrible time, so I started over from scratch, and it's going very smoothly. It's not the greatest game in the world, but I'm quite happy with how it's going.
There remains two more concerns, though, and I'm hoping someone here can help.
1) Creating an icon. The instructions say that you can give GE an .ico file and when it makes the program (for Windows, not Linux), it will have that image instead of the smiling Pac Man. So I used the GIMP and made an .ico file. Didn't work, a test compile created the Pac Man. I'm guessing I did something wrong in creating the .ico file. Are there certain guidelines (color resolution, specific size, etc.) that I need to follow?
2) I want to allow the player to reset the game at the end instead of just exiting the program completely and restarting it. The best way I've figured to do this is to create a global variable. As the game moves, the variable increases with the number of pixels the view travels. When the game resets, I simply move the view back until the variable is 0, and that's where the game starts. Sound in theory. But I'm wondering if there's an easier way. The first screen has a couple of objects that appear at no other point in the game. Is there a way to center the screen on them or move it relative to them with scripting rather than going through all the stuff with the display?