First off thank you for all your help so far. Below is the current code and I can get the "RT" to count but still not getting it to pick up the enter press and release.
Local delay
Put field 7 into delay
CanvasSetColor 1,255,255,0
CanvasFillOval 1,353,133,27,27
CanvasFillOval 1,445,133,27,27
Wait(1,2000)
CanvasFillOval 1,353,173,27,27
CanvasFillOval 1,445,173,27,27
Wait(1,delay)
CanvasFillOval 1,353,213,27,27
CanvasFillOval 1,445,213,27,27
Wait(1,delay)
CanvasSetColor 1,124,252,0
CanvasFillOval 1,353,253,27,27
CanvasFillOval 1,445,253,27,27
Label 1
Local evnt,key,cnum
Put CanvasEventFN(1) into evnt
if evnt=7 then
@ key down
Put CanvasKeyDownFN into key
Put AscFN(key) into cnum
if cnum=13 then
if toggleFlag=1 then
@ key is down
Reset(toggleFlag)
else
@ key is up
Set(toggleFlag)
endif
endif
endif
If toggleflag<1 then
Wait(1,0.1)
Add 0.001 to RT
Put RT into field 1
GotoLabel 1
endif