Re: iOS keyboard

2012-11-14 Thread J. Landman Gay
On 11/14/12 4:25 PM, Guglielmo Braguglia wrote: The Multiline Input control is an UITextView and, like all native controls, descend from UIView class so ... ... I suppose you can use the "backgroundColor" property and use the alpha value to make him transparent :-) Ha! This works. :) mobile

Re: iOS keyboard

2012-11-14 Thread J. Landman Gay
One more thing. Is it possible to get an input control to gain focus and display the iOS keyboard so it is ready to type into? If it matters, there is no associated LiveCode field. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.h

Re: iOS keyboard

2012-11-14 Thread J. Landman Gay
On 11/14/12 4:29 PM, Guglielmo Braguglia wrote: ... and Jaque, UIView have also two more properties : - opaque : Set to false if the control should be rendered with transparency. - alpha : Set to a value between 0 and 255 to blend the control with any controls underneath it. I have tried b

Re: iOS keyboard

2012-11-14 Thread Guglielmo Braguglia
... and Jaque, UIView have also two more properties : - opaque : Set to false if the control should be rendered with transparency. - alpha : Set to a value between 0 and 255 to blend the control with any controls underneath it. :-) Guglielmo On 14.11.2012 22:56, J. Landman Gay wrote: O

Re: iOS keyboard

2012-11-14 Thread Guglielmo Braguglia
Hi Jaque, don't worry, is quite quickly ... I use the message exactly to verify (and to remove) the CR that I don't wont in the text ;-) The Multiline Input control is an UITextView and, like all native controls, descend from UIView class so ... ... I suppose you can use the "backgroundColor"

Re: iOS keyboard

2012-11-14 Thread J. Landman Gay
On 11/14/12 2:08 PM, Guglielmo Braguglia wrote: Hi Jaque, I don't know if is the best solution, but actually, what I do to test the character inside the iOS/Android native fields (both single and multiline), is using the message "inputTextChanged" which is fired each character the user type ...

Re: iOS keyboard

2012-11-14 Thread Guglielmo Braguglia
Hi Jaque, I don't know if is the best solution, but actually, what I do to test the character inside the iOS/Android native fields (both single and multiline), is using the message "inputTextChanged" which is fired each character the user type ... So ... put mobileControlTarget() into tTarge

Re: iOS keyboard

2012-11-14 Thread J. Landman Gay
On 11/14/12 8:07 AM, Thomas McGrath III wrote: Jac, No, on iOS the single line input control is just that a 'single' line and even in xCode you can not get it to wrap. So you have to use a multiline control and as you have found out the multiline control is definitely a different beast altogethe

Re: iOS keyboard

2012-11-14 Thread Thomas McGrath III
Jac, No, on iOS the single line input control is just that a 'single' line and even in xCode you can not get it to wrap. So you have to use a multiline control and as you have found out the multiline control is definitely a different beast altogether. They are not at all what we are used to. M

Re: iOS keyboard

2012-11-13 Thread J. Landman Gay
On 11/13/12 6:07 PM, J. Landman Gay wrote: Also, is there a way to know if the user has typed the "hide keyboard" key to dismiss it? I want to treat that as a cancel. I still don't know about this one though. Also, I want a native iOS input control that allows no carriage returns but that

Re: iOS keyboard

2012-11-13 Thread J. Landman Gay
On 11/13/12 6:01 PM, J. Landman Gay wrote: When you set the return key to "done" on an iOS keyboard, isn't it supposed to say "Done" on it? In the simulator at least, it still says "return". It behaves correctly, it's just mislabeled. Got this figured out already -- you have to use mobileContro

Re: iOS Keyboard input question

2012-10-01 Thread J. Landman Gay
On 10/1/12 9:14 AM, Graham Samuel wrote: I'm working on an iOS app where keyboard input is allowed for a set of fields shown on the screen of the device: some are still visible when the keyboard comes up, i.e. not hidden by the keyboard - this is by design. These single-line fields are locked, wi

Re: iOS Keyboard options

2012-04-06 Thread Mark Smith
Hi Graham, I put the settings in custom properties and I haven't had any problem with the following openfield handler on openfield if the environment is "mobile" then iPhoneSetKeyboardType the ckeyboardtype of me iPhoneSetKeyboardReturnKey the creturnkey of me end if end openfi

Re: iOS Keyboard options

2012-04-06 Thread Tim Jones
I can't answer for the other questions, but that little keyboard key is the "hide me" key and just closes the onscreen keyboard. It doesn't really have a keycode. Tim On Apr 6, 2012, at 2:26 AM, Graham Samuel wrote: > In the latest LC iOS Release notes, the options for changing the keyboard

Re: iOS keyboard input and rawKeyUp

2012-03-12 Thread Ludovic Thébault
Le 12 mars 2012 à 09:58, Ludovic Thébault a écrit : > Hello, > > When we tape a text in a field with the iOS keyboard, the rawKeyUp doesn't > catch anything. > How get the text typed to do a live filtering ? > > Thanks. > Forget, it's work ! ___