I'm trying to do a sort of keyboard for my camera
i was thinking how to include backspace
i have
stringa="example"
and i want to delete the "e", so i tried
stringa=stringa.."\b \b"
which is supposed to add to "example" a backspace escape character, a space (overriding the "e") and another backspace to set the cursor to the right position...
but instead of a backspace, a white box character is displayed, like "example[] []" when i try to do
draw.add("string",..., stringa)
just wondering what i am doing wrong and how to achieve the result
edit: in "CHDK Lua local" run on a pc it works, on the camera it doesn't. Same results with
stringa="ciao"
print(stringa.."\n")
stringa=stringa.."\b \b"
print(stringa)
wait_click(0)
on pc it shows "cia", on the camera it shows "ciao[] []"