Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the '10.5: Watch and listen to the 10.5 intro movie' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
10.5: Watch and listen to the 10.5 intro movie
Authored by: sgasp on Sat, Mar 7 2009 at 11:20AM PST
This script will play the video and the sound

Just copy past the code in a new Applescript in Script Editor.

save it as an Application.

[code]
tell application "QuickTime Player"
set myVideo to open POSIX file "/System/Library/CoreServices/Setup Assistant.app/Contents/Resources/TransitionSection.bundle/Contents/Resources/intro.mov" as alias
set myAudio to open POSIX file "/System/Library/CoreServices/Setup Assistant.app/Contents/Resources/TransitionSection.bundle/Contents/Resources/intro-sound.mp3" as alias
activate
tell front document
select all
copy
end tell
get properties of document "intro.mov"

add document "intro.mov"
present document "intro.mov" scale screen
delay 46
close documents without saving
end tell
[code]


[ Reply to This | # ]