.
Timer with Mode = 1
EditWindow.NameField.SelStart = EditWindow.NameField.Text.len
Just worked it out, right before you posted the solution
Thanks anyway Axel - still appreciated.
But what if you need to edit text that is not at the end? A typo maybe? You’ll need to delete the wriiten text all the way back to the error.
Would SelLength = 0 not work?
An empty Project with 1 Textfield
In Window Open
TextField1.Text = "Hello"
TextField1.SelStart = TextField1.Text.Len
TextField1.SelLength = 0
does not work (all selected)
move
TextField1.SelStart = TextField1.Text.Len
TextField1.SelLength = 0
to GotFocus
then it works