Yes/No dialog on iOS?
Posted: Sun Feb 20, 2011 9:29 am
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.
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
on mouseUp
answer "a question" with "yes" or "no"
if it is yes then
beep
end if
end mouseUp