Skip to content

Instantly share code, notes, and snippets.

@biojazzard
Created May 29, 2012 15:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biojazzard/2829190 to your computer and use it in GitHub Desktop.
Save biojazzard/2829190 to your computer and use it in GitHub Desktop.
Applescript Open a Movie in FullScreen
-- Version: QT 7 for OSX 10.6
on run
set unixpath to "/Volumes/Mac HD/Users/Movies/thefilm.mov"
set macfile to (POSIX file unixpath)
delay 1
tell application "QuickTime Player 7"
activate
delay 1
open file macfile
set looping of document 1 to true
rewind document 1
present document 1 scale screen
end tell
end run
-- Version: QT 10 for OSX 10.7
on run
set unixpath to "/Volumes/Mac HD/Users/Movies/thefilm.mov"
set macfile to (POSIX file unixpath)
delay 1
tell application "QuickTime Player"
activate
delay 1
open file macfile
set looping of document 1 to true
--FullScreen
--set presenting of document 1 to true
--GetBounds
set the bounds of the first window to {140, 100, 1280, 720}
try
set the bounds of the second window to {150, 0, 1130, 775}
end try
play document 1
end tell
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment