On iOS, when entering data into a text field, one touch of the shift key puts it into shift-lock mode.
On iOS, if you close the keyboard, you cannot tap the field to bring it back, (with traverse on).
On desktop, when entering data into a text field, you cannot click into the text, you have to use arrow keys to get to anywhere other than beginning or end
On iOS,when entering data into a text field, you cannot tap into a space in a sentence, (and as there are no left and right keys, you cannot edit existing text)
this is the only code I have on my data entry fields, (I only want numbers or dp for my numeric field, and no commas in my other fields)
Code: Select all
global whichfield
on keyDown theKey
if whichfield="balance" then
## Check whether theKey is a number
if theKey is not a number and theKey is not "." then
## beep to alert the user
beep
else
## pass keyDown up the message path
pass keyDown
end if
else
if theKey is "," then
beep
else
pass keyDown
end if
end if
end keyDown
Steve