Android Samsung Galaxy option key

The place to discuss anything and everything about running your LiveCode on Android

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
itay1023
Posts: 68
Joined: Fri Sep 28, 2012 1:44 pm

Android Samsung Galaxy option key

Post by itay1023 » Sun Oct 20, 2013 12:12 pm

Hi,
Does anyone know what code can enable the option key on the samsung mobile?
How can i make a option list?

Best regards,
Itay :)

bangkok
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 937
Joined: Fri Aug 15, 2008 7:15 am

Re: Android Samsung Galaxy option key

Post by bangkok » Sun Oct 20, 2013 3:23 pm

Dont' know about the key.

But to create an option list :

Code: Select all

on mouseUp
      put "Customers list,Suppliers list,Purchases orders" into myOptionList
   if the environment is  not "mobile" then exit to top

      replace "," with return in myOptionList
      put 1 into gCurrentSelectedValue
      mobilePick myOptionList,gCurrentSelectedValue,"checkmark","cancelDone"
      put the result into tChoice
 
if tChoice=0 then
exit to top
else
answer line tChoice of myOptionList
end if

end mouseUp

Simon
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 3901
Joined: Sat Mar 24, 2007 2:54 am

Re: Android Samsung Galaxy option key

Post by Simon » Sun Oct 20, 2013 5:50 pm

Hi Itay,
Do you mean the menuKey?
It's in the dictionary.

Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!

Post Reply