[Solved]How to select char left from cursor in TextInput?
-
I want to select 1 character left from cursor in textInput, how can I do that?
-
@Zubalama Try this:
inpuT.getText(inpuT.length-1,inpuT.length) ///inpuT = id of TextInput.
-
@Zubalama Why are you subtracting text again from it ?
JustinpuT.getText(inpuT.length-1,inpuT.length)
should work. -
because I'm trying to make backspace button, and onClick won't work because I'm trying to do it for remote control
-
-
1 more question how do I make topic "solved"?
-
@Zubalama There's a Topic Tools box at the bottom. Inside it contains Mark Solved option. If it doesn't work then edit the post title and prepend [Solved]. If you don't get it, let us know.
6/9