Quote: "ENTRY$(1) will automatically handle backspaces for you."
yup. while entry$(0) defining anykey you press as a char (including ENTER, Backspaces and so on)
so you will have to get rid of ENTER character too.
Edit:
i just got home and i fixed a thing or two on the code i posted above..
its not empty, its "clear entry buffer" and backspace is 8 instead of 14..
so the code is:
a$ = "Hello World"
do
cls
e$ = entry$(0)
clear entry buffer
if asc(e$) = 8 //backspace check.. (if im not wrong, backspace is 14, if not, fix this one..)
a$ = left$(a$,len(a$)-1)
e$ = ""
endif
a$ = a$+e$
print a$
loop