ok now i have a problem with v2... it lets me do everything and then when i press enter after telling it what time to wake me... it won't bring the window back up when the time entered is the same as the current time? what's wrong here is the code:
Rem Project: Alarm Clock
Rem Created: 11/13/2004 11:40:03 AM
Rem ***** Main Source File *****
LOAD IMAGE "C:\Documents and Settings\Administrator\Desktop\Chronic-ware\Apps\Alarm Clock\screen.png",1 : PASTE IMAGE 1,0,0
SET CURSOR 390,274
INPUT "",X$
LOAD SOUND "C:\Documents and Settings\Administrator\Desktop\Chronic-ware\Apps\Alarm Clock\buzz.wav",1
HIDE WINDOW : CLS
DO
IF GET TIME$()=X$ THEN EXIT
LOOP
MAXIMIZE WINDOW : SHOW WINDOW : SET DISPLAY MODE 1280,1024,16 : SET WINDOW OFF
SET TEXT SIZE 75
DO
PLAY SOUND 1
CENTER TEXT 640,512,"WAKE UP!"
WAIT 1000 : CLS : WAIT 1000
LOOP
Celsius Zero