basgo icon indicating copy to clipboard operation
basgo copied to clipboard

LOCATE requires SCREEN 0

Open udhos opened this issue 4 years ago • 0 comments

SCREEN 0 enables terminal features for the command LOCATE.

This LOCATE will NOT work:

20 locate 10,10: ? "test"
30 ?:while i$="":?"hit ENTER to exit":i$=input$(1):?i$:wend

This LOCATE will work:

10 screen 0
20 locate 10,10: ? "test"
30 ?:while i$="":?"hit ENTER to exit":i$=input$(1):?i$:wend

udhos avatar Sep 02 '21 14:09 udhos