keyboard appears self not wanted

The place to discuss anything and everything about running your LiveCode on Android

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
sunkim
Posts: 23
Joined: Tue May 05, 2015 8:30 pm

keyboard appears self not wanted

Post by sunkim » Sun May 17, 2015 8:16 pm

hi everyone

testing on the android device,
I open my app that i made
and work first main page
but when i clicked next button the keyboard appear that I don't want it, or black screen appears.
button script is simple
following my script

select the line LineNum3 of field "adjective30"
put the selectedText into field "disadjective"
select the line LineNum3 of field "adjective30KO"
put the selectedText into line 2 of field "disadjective"
put the selectedText into field "FLDstatement1000"
end mouseup

did I set wrong property of field of card?

Thanks for any help.

sunkim

jacque
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 7389
Joined: Sat Apr 08, 2006 8:31 pm
Contact:

Re: keyboard appears self not wanted

Post by jacque » Mon May 18, 2015 10:06 pm

Selecting text in a field causes an openField message to be sent, which displays the keyboard. It isn't necessary to select text, you can just use it directly:

Code: Select all

put line 3 of field "adjective30" into field "disadjective"
Also, "the" is used only for properties (and some built-in functions,) but never with objects:

the line 3 --> incorrect
line 3 --> correct
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com

sunkim
Posts: 23
Joined: Tue May 05, 2015 8:30 pm

Re: keyboard appears self not wanted

Post by sunkim » Tue May 19, 2015 1:32 pm

I did it
I fixed it last night
problem was field hidden of card
I set property of field hidden again

Jacque! thanks lot!

Post Reply