Re: Backspace doesn't work in 4.1.0 programs?
- Posted by RobertS May 07, 2022
- 1660 views
I've just discovered something strange:
In this example, Backspace works with gets(0)
object line
line = gets(0)
puts(1, "\n")
puts(1, "input line: " & line)
After I write anything to the screen, Backspace stops working:
object line
puts(1, "anything\n")
line = gets(0)
puts(1, "\n")
puts(1, "input line: " & line)
Also, in the first example puts(1, "\n") creates an extra blank line, but as soon as something got written to the screen and Backspace stops working, \n is needed to start a new line - as it had been until 4.05.
Maybe this can give a hint where the problem may lie?
Still have to try Chris's code! Thanks, Robert