Hi there I’m making a script to read the files in a sequence of folders then play each using Quicktime.
My problem is that I want a syatem beep at the end of each file, and for each file to close when it’s done.
I see the property close when done but how do I set it? My script below gives an error “unknown object type”
How do I set this, or set up something similar to achieve my goal?
Cheers
H.
tell application "QuickTime Player"
				activate
				open this_file
				set close when done to true
				set movie_name to name of front movie
				display dialog "Movie name is " & movie_name
				set show movie info window to true
				-- set close when done to true
				play movie movie_name
				
				beep
				
			end tell