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
keyboard appears self not wanted
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: keyboard appears self not wanted
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:
Also, "the" is used only for properties (and some built-in functions,) but never with objects:
the line 3 --> incorrect
line 3 --> correct
Code: Select all
put line 3 of field "adjective30" into field "disadjective"
the line 3 --> incorrect
line 3 --> correct
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: keyboard appears self not wanted
I did it
I fixed it last night
problem was field hidden of card
I set property of field hidden again
Jacque! thanks lot!
I fixed it last night
problem was field hidden of card
I set property of field hidden again
Jacque! thanks lot!