Answer dialog limitation?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Answer dialog limitation?
Good morning!
I am currently working on an app for both mobile platforms and have run into an issue for which I hope there is a solution.
I have the following code in a button:
on mouseUp
answer "Leave a review on:" with "DealerRater" or "Google+" or "Yelp" or "Cancel"
end mouseUp
iOS responds as expected with an answer dialog displaying the correct options listed per the code above (see screenshot).
Android, however, only presents 3 options (see screenshot).
The odd behavior experienced (aside from rendering the correct options) is that pressing "Cancel" performs the action for "Yelp"
Does anyone have any information or suggestion on proceeding?
Thank you!
I am currently working on an app for both mobile platforms and have run into an issue for which I hope there is a solution.
I have the following code in a button:
on mouseUp
answer "Leave a review on:" with "DealerRater" or "Google+" or "Yelp" or "Cancel"
end mouseUp
iOS responds as expected with an answer dialog displaying the correct options listed per the code above (see screenshot).
Android, however, only presents 3 options (see screenshot).
The odd behavior experienced (aside from rendering the correct options) is that pressing "Cancel" performs the action for "Yelp"
Does anyone have any information or suggestion on proceeding?
Thank you!
Re: Answer dialog limitation?
That's strange! Usually a bullet list appears, not the window with buttons...
Are you using livecode 7?
Are you using livecode 7?
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
Re: Answer dialog limitation?
Using LC8.
This is how I've always handled answer dialogs in the past.
iOS is doing it right, Android is not.
This is how I've always handled answer dialogs in the past.
iOS is doing it right, Android is not.
Re: Answer dialog limitation?
Try with Livecode 7.
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
Re: Answer dialog limitation?
However with long list, use
Code: Select all
mobilePick "A" & return & "B" & return & "C" & return & "D"
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w