c-stephens / Call-or-Message-Contact

Call or message contacts via Alfred.
Apache License 2.0
33 stars 0 forks source link

Skip Confirmation and call not working #9

Open cheeth opened 2 years ago

cheeth commented 2 years ago

Hi, this feature has stopped working for both Tel and Msg - ? any ideas - really appreciate this workflow thank you so much

yihou commented 2 years ago

managed to find the issue in Apple script, just change the process name to NotificationCenter instead of Notification Center as per below:

on run
tell application "System Events"
    do shell script "open 'facetime-audio://{query}'" 
    delay 1
    click button 1 of group 1 of UI element 1 of scroll area 1 of window 1 of application process "NotificationCenter" 
end tell
end run