Contacts on Android
Posted: Mon Jun 08, 2020 6:02 pm
So, I have a problem...
I'm trying to get a contact number on android using
But I cannot seem to be able to get the phone number but I can get the name... I looked at every thread and none of them seemed to have an answer... I hope they fixed it... (running LC 9.6 DP 4) (Android 9.0 Pie)

here's my code:
this is for the first name
Thanks.
I'm trying to get a contact number on android using
Code: Select all
mobileGetContactData
Code: Select all
mobilePickData


here's my code:
Code: Select all
on mouseUp
mobilePickContact
put the result into tID
put mobileGetContactData (tID) into tData
answer tData[phone]["mobile"] -- I also tried answer tData["mobile"] and using CAPS - didn't work.
end mouseUp
Code: Select all
on mouseUp
mobilePickContact
put the result into tID
put mobileGetContactData (tID) into tData
answer tData ["firstname"]
end mouseUp
Thanks.