I'm working on the phone app for ios. I have used the following code to make a phone call
Code: Select all
on mouseUp
launch url "tel:" && field "number"
put the result into field "number"
end mouseUp
Sasha
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on mouseUp
launch url "tel:" && field "number"
put the result into field "number"
end mouseUp
You can't!Sasha wrote:...It calls through the built-in phone app, but i want to make a call without using the built-in in phone app. how can i do it ?