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

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
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