Я пытаюсь открыть видео QuickTime на удаленном компьютере, но сталкиваюсь с некоторой проблемой.
Может кто-нибудь помочь?
Это код, который я получил до сих пор, он может открыть видео, но не знает, как заставить его воспроизводить ...
set TheView2 to "eppc://username:password@TheView2.local"
set remoteFinder to application "Finder" of machine TheView2
using terms from application "Finder"
tell remoteFinder
open application file id "com.apple.QuickTimePlayer"
try
using terms from application "QuickTime Player"
tell application "QuickTime Player" of machine TheView2
open "Macintosh HD:Users:mini:Desktop:cache.mov"
end tell
end using terms from
on error errText number errNum
display dialog "Some other error: " & errNum & return & errText
end try
end tell
end using terms from