2016-08-22 6 views
0

메시지 앱의 특정 계정에서 화면 공유 초대를 자동으로 수락하고 싶습니다.Apple 스크립트에서 구문 오류가 발생했습니다

나는 ","와 ","로 ","자동 Accept.applescript에 가서 다음

on received local screen sharing invitation from theBuddy for theChat 
    accept theChat 
end received local screen sharing invitation 

을 추가하지만 난 그것을 저장하려고하면, 나는 "구문 오류가 예상"주어진 얻을 "또는 다른 매개 변수 이름이 있지만"로컬 "을 발견했습니다."

무엇이 누락 되었습니까?

답변

0

은 기본적으로 당신은

using terms from application "Messages" 


end using terms from 

블록의 코드를 포장해야합니다. 그러나 Messages.app의 버전은 on received local screen sharing invitation from theBuddy for theChat 이벤트가 있습니까?

편집 :

화면 공유 초대 비디오 초대되어, 이벤트 local screen sharing invitation가 존재하지 않습니다.

using terms from application "Messages" 
    on received video invitation theText from theBuddy for theChat 
     set buddySN to (get handle of theBuddy) 
     set allowedBuddy to "myAccount" 
     if (buddySN is allowedBuddy) then 
      accept theChat 
     end if 
    end received video invitation 
end using terms from 
+0

특정 사용자의 화면 공유 초대를 자동으로 수락하려면 어떻게해야합니까? 나는 엘 캐피 탄을 사용하고 있습니다. –

+0

"myAccount"를 사과 ID로 바꾸고 싶습니다. –

+0

예, 'handle'은 전자 메일 주소 또는 전화 번호 또는 AIM 이름을 나타냅니다. – vadian