Keyboard selection for Password in iOS

Something you want to see in a LiveCode product? Want a new forum set up for a specific topic? Talk about it here.

Moderator: Klaus

Post Reply
SteveHanlan
Posts: 80
Joined: Fri Jul 09, 2010 6:28 pm

Keyboard selection for Password in iOS

Post by SteveHanlan » Mon Feb 07, 2011 8:37 pm

I'm sure there are other users that need to set a default keyboard for numeric only passwords, (i.e. a PIN Number)

Steve Hanlan
(almost ready to deploy first app)

SteveHanlan
Posts: 80
Joined: Fri Jul 09, 2010 6:28 pm

Re: Keyboard selection for Password in iOS

Post by SteveHanlan » Thu Feb 10, 2011 9:01 pm

Also, why does the return key on the keyboard not accept the password, (you have to go back to the answer block and tap 'OK')

This would be consistent with all other data entry.

Steve

dburdan
Posts: 104
Joined: Fri Jan 28, 2011 5:39 am

Re: Keyboard selection for Password in iOS

Post by dburdan » Mon Feb 28, 2011 6:20 pm

For the iPhone keyboard use:

Code: Select all

iphoneSetKeyboardType default
iphoneSetKeyboardReturnKey done
also you can put code when the return key is clicked:

Code: Select all

on returnInField
   Do something
end returnInField

on EnterInField
   Do something
end EnterInField
Look in the iOS release notes for more details

Post Reply