Re: Looping Multiple Quicktime Movies
Re: Looping Multiple Quicktime Movies
- Subject: Re: Looping Multiple Quicktime Movies
- From: "Stockly, Ed" <email@hidden>
- Date: Mon, 09 Nov 2009 18:35:16 -0800
- Thread-topic: Looping Multiple Quicktime Movies
You could try to do something like this:
tell application "Finder"
kind of item 1 of movieFolder
set myMovies to every item of movieFolder whose kind is in
{"QuickTime Movie"}
end tell
repeat
repeat with thisMovie in myMovies
tell application "QuickTime Player"
open thisMovie
present document 1
play document 1
repeat
set movieState to (get display state of document 1)
if movieState is not presentation then exit repeat
delay 1
end repeat
close document 1
end tell
end repeat
end repeat
On 11/08/09 12:22 PM, "QueerLib" wrote:
> Hello,
>
> Was wondering if there was a script for looping multiple quicktime
> movies placed in one folder. I am running Mac OS X Leopard on a Dual
> Core iMac.
>
> Thank you,
>
> Jesús Lebrón
> San Juan, Puerto
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> AppleScript-Users mailing list (email@hidden)
> Help/Unsubscribe/Update your Subscription:
> com
> Archives: http://lists.apple.com/archives/applescript-users
>
> This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden