Re: Setting QuickTime Player 7 Preferences
Re: Setting QuickTime Player 7 Preferences
- Subject: Re: Setting QuickTime Player 7 Preferences
- From: "Hughes, Karlton D." <email@hidden>
- Date: Wed, 19 Jan 2011 15:31:55 -0500
- Acceptlanguage: en-US
- Thread-topic: Setting QuickTime Player 7 Preferences
Thanks Chris.
Although I could have just closed the window, I actually ended up using a combination…
tell application "QuickTime Player 7"
activate
delay 3
if document "Apple QuickTime" exists then
close document "Apple QuickTime"
set show welcome movie automatically to false
end if
end tell
__________________________________________________________________________________ Karlton Hughes, Instructional Designer Instructional Technology Services (Memorial Hall)
Technology Awareness for Higher Ed @ Rowan __________________________________________________________________________________
From: Christopher Stone < email@hidden> Date: Wed, 19 Jan 2011 14:51:49 -0500 To: Karlton Hughes < email@hidden> Cc: Applescript Users List List < email@hidden> Subject: Re: Setting QuickTime Player 7 Preferences
On Jan 19, 2011, at 10:39, Hughes, Karlton D. wrote: Can I right a simple script to set the QuickTime Player 7 preference that would turn the "Show Content Guide automatically" off?
______________________________________________________________________
Hey Karlton,
Here's a few breadcrumbs:
tell application "QuickTime Player 7" set show welcome movie automatically to false end tell
tell application "QuickTime Player 7" first document whose name is not "Apple QuickTime" end tell
tell application "QuickTime Player 7" if document "Apple QuickTime" exists then close document "Apple QuickTime" end if end tell
Just FYI:
I found the property very quickly searching the dictionary for "automatic" with Script Debugger. I got there pretty easily in the Applescript Editor's dictionary search. And I was also able to find it easily with Smile.
|
_______________________________________________
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