Not Available

Getting into LiveCode for iOS? Ask your questions here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

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

Not Available

Post by dburdan » Wed Mar 23, 2011 7:23 pm

Not Available
Last edited by dburdan on Thu Jan 08, 2015 9:55 am, edited 3 times in total.

ctflatt
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 243
Joined: Sun Dec 06, 2009 12:24 am
Contact:

Re: UITextView Problems

Post by ctflatt » Wed Mar 23, 2011 9:38 pm

dburdan:

Is UITextView currently supported?

Do you mean the new UITextField control?

Just checking.

:Todd

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

Re: UITextField Problems

Post by dburdan » Wed Mar 23, 2011 11:24 pm

Yes that is what I meant. I just blanked when i thought about it.

observ3
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 34
Joined: Mon Oct 11, 2010 11:05 pm

Re: UITextField Problems

Post by observ3 » Thu Mar 24, 2011 12:19 am

Same problem.
Check out my LiveCode program, WriteSpire, on the App Store!

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

Re: UITextField Problems [SOLVED]

Post by dburdan » Sat Mar 26, 2011 9:08 am

I just found out how.

put iphoneControlGet(NAME_OF_FIELD,text) into field "VALUE"
Last edited by dburdan on Sat Mar 26, 2011 10:57 pm, edited 1 time in total.

Klaus
Posts: 14177
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: UITextField Problems [SOLVED]

Post by Klaus » Sat Mar 26, 2011 1:14 pm

dburdan wrote:put iphoneControlGet(NAME_OF_FIELD,text) into VALUE
Attenzione, nitpicky alarm! :D
VALUE is a reserved word, so this might throw an error 8)


Best

Klaus

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

Re: UITextField Problems [SOLVED]

Post by dburdan » Sat Mar 26, 2011 10:57 pm

I fixed the post just for you 8)

Klaus
Posts: 14177
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: UITextField Problems [SOLVED]

Post by Klaus » Sun Mar 27, 2011 12:16 pm

Dan, you're just too kind :D

observ3
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 34
Joined: Mon Oct 11, 2010 11:05 pm

Re: UITextField Problems [SOLVED]

Post by observ3 » Tue Mar 29, 2011 4:07 am

Ouch, very different from how I'm used to thinking about LiveCode.
Still, thanks very much for this find. :-)
Check out my LiveCode program, WriteSpire, on the App Store!

observ3
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 34
Joined: Mon Oct 11, 2010 11:05 pm

Re: UITextField Problems [SOLVED]

Post by observ3 » Tue Mar 29, 2011 4:09 am

A quick example...

Code: Select all

on inputEndEditing
   answer (iphonecontrolGet("testinput", text))
end inputEndEditing
Thanks again!
Check out my LiveCode program, WriteSpire, on the App Store!

Post Reply