Page 1 of 1

Does Option Buttons on Android?- I decided to use MobilePick

Posted: Sat Sep 12, 2015 2:00 pm
by DR White
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

Re: Does Option Buttons on Android?- I decided to use Mobile

Posted: Tue Sep 29, 2015 1:16 pm
by MaxV
You use a option button with this code:

Code: Select all

Global pItemNameFrameOut

on menuPick pItemName1
   switch pItemName1      
   end switch   
   put pItemName1 into pItemNameFrameOut
   --Call Search   
end menuPick
that is the same of:

Code: Select all

Global pItemNameFrameOut

on menuPick pItemName1
   put pItemName1 into pItemNameFrameOut
   --Call Search   
end menuPick
What do you expect?
However global variables are bad, use custom properties instead.