Page 1 of 1
Not Available
Posted: Wed Mar 23, 2011 7:23 pm
by dburdan
Not Available
Re: UITextView Problems
Posted: Wed Mar 23, 2011 9:38 pm
by ctflatt
dburdan:
Is UITextView currently supported?
Do you mean the new UITextField control?
Just checking.
:Todd
Re: UITextField Problems
Posted: Wed Mar 23, 2011 11:24 pm
by dburdan
Yes that is what I meant. I just blanked when i thought about it.
Re: UITextField Problems
Posted: Thu Mar 24, 2011 12:19 am
by observ3
Same problem.
Re: UITextField Problems [SOLVED]
Posted: Sat Mar 26, 2011 9:08 am
by dburdan
I just found out how.
put iphoneControlGet(NAME_OF_FIELD,text) into field "VALUE"
Re: UITextField Problems [SOLVED]
Posted: Sat Mar 26, 2011 1:14 pm
by Klaus
dburdan wrote:put iphoneControlGet(NAME_OF_FIELD,text) into VALUE
Attenzione, nitpicky alarm!
VALUE is a reserved word, so this might throw an error
Best
Klaus
Re: UITextField Problems [SOLVED]
Posted: Sat Mar 26, 2011 10:57 pm
by dburdan
I fixed the post just for you

Re: UITextField Problems [SOLVED]
Posted: Sun Mar 27, 2011 12:16 pm
by Klaus
Dan, you're just too kind

Re: UITextField Problems [SOLVED]
Posted: Tue Mar 29, 2011 4:07 am
by observ3
Ouch, very different from how I'm used to thinking about LiveCode.
Still, thanks very much for this find.

Re: UITextField Problems [SOLVED]
Posted: Tue Mar 29, 2011 4:09 am
by observ3
A quick example...
Code: Select all
on inputEndEditing
answer (iphonecontrolGet("testinput", text))
end inputEndEditing
Thanks again!