2
我在XCode中有一個Cocoa-AppleScript項目,我試圖在本地網絡計算機上向iTunes發送一些命令。出於某種原因,這個工程:AppleScript與遠程計算機上的iTunes
tell application "iTunes" of machine "eppc://user:[email protected]"
playpause
end tell
但這並不:「找不到遠程機器」
set remoteMachine to "eppc://user:[email protected]"
tell application "iTunes" of machine remoteMachine
playpause
end tell
我得到的錯誤有任何想法嗎?
不幸的是,這並沒有奏效。任何其他想法? – Jesse