on send_msg(msg,PhoneNum,Ui) tell application "Messages" activate end tell if Ui is equal to false then tell application "Messages" set targetService to 1st service whose service type = iMessage set targetBuddy to buddy PhoneNum of targetService send msg to targetBuddy end tell else set the clipboard to msg tell application "System Events" keystroke "n" using {command down} delay 0.8 keystroke PhoneNum delay 0.8 keystroke return delay 0.5 keystroke "v" using command down keystroke return end tell end ifend send_msgon run {} set msg to "hello world" set PhoneNum to "180xxx" set Ui to true send_msg(msg,Ui)end run总结
以上是内存溢出为你收集整理的发送imessage消息全部内容,希望文章能够帮你解决发送imessage消息所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)