Re: Script to conditionaly uncheck Hide and show Front Row
Re: Script to conditionaly uncheck Hide and show Front Row
- Subject: Re: Script to conditionaly uncheck Hide and show Front Row
- From: Luther Fuller <email@hidden>
- Date: Tue, 12 May 2009 16:43:47 -0500
I looked for this info in a .plist file, but found nothing. Has anyone else looked, too? And did you find anything? It is a lot easier to modify a .plist file via System Events that clicking check-boxes.
On 2009-05-12, at 07:53:26, Rahulkumar Tibdewal wrote:
I want to write apple script for
Open System preferences Open Keyboard & Mouse Click on Keyboard Shortcuts If Hide and show Front Row is enabled then disable
OS X 10.5.6. The following seems to turn it off ok, but turning it back on doesn't work as expected. Can you confirm?
tell application "System Preferences" set current pane to pane id "com.apple.preference.keyboard" tell current pane reveal anchor "shortcutsTab" end tell activate end tell tell application "System Events" to tell application process "System Preferences" tell window 1 tell tab group 1 tell scroll area 1 tell outline 1 set candidates to every row whose value of text field 1 contains "Front Row" tell item 1 of candidates if (value of checkbox 1 is 1) then click checkbox 1 end if end tell end tell end tell end tell end tell end tell
|
_______________________________________________
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