Re: using apple script
Re: using apple script
- Subject: Re: using apple script
- From: JJ <email@hidden>
- Date: Thu, 24 Oct 2002 10:20:17 +0200
>
I have quicktime pro 6. I'm trying to get quicktime player to play about
>
four .mp3 tunes in succession using applescript but I really don't know how.
>
Can you help?
>
Geo.
Hi, Geo.
The mistery about this qt routine is at its dictionary, just in "done"
movie's property.
This quick example can be saved as a droplet, where you can drop-onto some
sample playable files.
property idleTime : 3
on open these_cool_mp3
repeat with i in (these_cool_mp3 as list) -- avoid one-single-mp3 error
tell application "QuickTime Player"
open i
play movie 1
repeat while not (done of movie 1)
delay idleTime
end repeat
close movie 1
end tell
end repeat
end open
Bye!
JJ
_______
*100,000,000 users can9t be wrong. ;-)
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.com
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.