Beautiful mate. Modified it a tad with my other stuff. Thanks

Rem Project: vagga
Rem Created: Sunday, August 22, 2010
Rem ***** Main Source File *****
set window on
set display mode 400, 100, 32
sync rate 0
sync on
` Make all text overwrite previous text (for backspace)
set text opaque
` Make Answer$ equal the output of the function GetInput()
Answer$=GetInput()
` Show the answer
LOAD MUSIC "E:\programming\vagabonds\sound.wav", 1
T=Timer()
DO
Elapsed=(Timer()-T)/1000
cls
text 0,0,"Destination = "+Answer$
Elapsed=(Timer()-T)/1000
Text 0,15,"Time Elapsed = "+Str$(Elapsed)
Text 0,30,"Current Time = " + GET TIME$()
sync
theTime$ = GET TIME$()
if theTime$ = Answer$
PLAY MUSIC 1
endif
LOOP
end
` Get the users input
function GetInput()
` Clear the buffer (so no previous keys are added to the string)
clear entry buffer
` Create a timer for backspace
tim=timer()
do
` Show the prompt and user input
text 0,0,"HH:MM:SS " + Com$+"| "
` Get the keys typed by the user and clear the buffer again
a$=entry$(1):clear entry buffer
` Check for backspace (the timer is so the text doesn't delete too quickly)
if keystate(14) and timer()>tim+100
` Remove last character from the input string
Com$ = left$(Com$,len(Com$)-1)
` Clear a$ and reset timer
a$="":tim=timer()
endif
` Check for enter key and leave the DO/LOOP
if keystate(28) then exit
` Check if a$ is more than nothing and Com$ is no more than 30 characters
if a$<>"" and len(Com$)<30
` Add a$ to Com$
Com$ = Com$ + a$
endif
sync
loop
` End the function with whatever the user entered
endfunction Com$
"The eternal mystery of the world is its comprehensibility."
-Albert Einstein
Join this vent for Dark Programming - lead.typefrag.com:16020