8 lines
269 B
ActionScript
8 lines
269 B
ActionScript
|
|
on run {targetBuddyPhone, targetMessage}
|
||
|
|
tell application "Messages"
|
||
|
|
set targetService to 1st service whose service type = SMS
|
||
|
|
set targetBuddy to buddy targetBuddyPhone of targetService
|
||
|
|
send targetMessage to targetBuddy
|
||
|
|
end tell
|
||
|
|
end run
|