I have attached test code of a button with the type of option that works on IOS , but not Android.
Can anyone tell me why?
Thanks,
David
Does Option Buttons on Android?- I decided to use MobilePick
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Does Option Buttons on Android?- I decided to use MobilePick
- Attachments
-
- Button_Type_Option.livecode.zip
- Test stack for Option button
- (2.68 KiB) Downloaded 173 times
Re: Does Option Buttons on Android?- I decided to use Mobile
You use a option button with this code:
that is the same of:
What do you expect?
However global variables are bad, use custom properties instead.
Code: Select all
Global pItemNameFrameOut
on menuPick pItemName1
switch pItemName1
end switch
put pItemName1 into pItemNameFrameOut
--Call Search
end menuPick
Code: Select all
Global pItemNameFrameOut
on menuPick pItemName1
put pItemName1 into pItemNameFrameOut
--Call Search
end menuPick
However global variables are bad, use custom properties instead.
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