Hi,
I don't know why I couldnot open the source code provided by you. But I suggest that:
1. To make the lock stop when pressing the spacebar:
Do
...
If inkey$() = " "
Wait 250
Wait key
Wait 250
EndIf
Loop
The '...' is the previous code. I just add more codes to stop the clock, the previous code, I think you already got it in the last post about timer.
This will stop the clock when the user press the spacebar and the clock will continue after another key is pressed.
Wait 250 commands is just enough long for the user to put their finger out of the spacebar. If there's no Wait 250, the clock will continue despite a lot of times pressing spacebar from the user, as the loop is so fast. Just try to drop out 1 of the 2 Wait 250 commands and see what happens!
2. Load a bitmap into the bitmapnumber 1 or 2, etc...
Then use Copy bitmap and specify the X, Y coordinate (left, top, right, bottom):
Left = Int((Screen Width$() - Bitmap Width(
BitmapNumber)) / 2)
Top = Int((Screen Height$() - Bitmap Height(
BitmapNumber)) / 2)
Right = Left + Bitmap Width(
BitmapNumber) - 1
Bottom = Top + Bitmap Height(
BitmapNumber) - 1
-------------------
That's it. Hope it help,
Bye bye,