Yes/No dialog on iOS?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Yes/No dialog on iOS?
How can I do a simple Yes/No dialog on iOS? I just want to ask the user a question and get "Yes" or "No" back without having to create my own dialog.
Re: Yes/No dialog on iOS?
Code: Select all
on mouseUp
answer "a question" with "yes" or "no"
if it is yes then
beep
end if
end mouseUp
Various teststacks and stuff:
http://bjoernke.com
Chat with other RunRev developers:
chat.freenode.net:6666 #livecode
http://bjoernke.com
Chat with other RunRev developers:
chat.freenode.net:6666 #livecode
Re: Yes/No dialog on iOS?
Thanks!I was looking at ask instead of answer.