Page 1 of 1
Android Samsung Galaxy option key
Posted: Sun Oct 20, 2013 12:12 pm
by itay1023
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

Re: Android Samsung Galaxy option key
Posted: Sun Oct 20, 2013 3:23 pm
by bangkok
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
Re: Android Samsung Galaxy option key
Posted: Sun Oct 20, 2013 5:50 pm
by Simon
Hi Itay,
Do you mean the menuKey?
It's in the dictionary.
Simon