Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'AppleScript to Toggle Modes...' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
AppleScript to Toggle Modes...
Authored by: chucky23 on Jan 08, '09 09:18:34AM

set x to "TRUE"
do shell script "defaults read com.apple.dock static-only"
if result = "1" then set x to "FALSE"
do shell script "defaults write com.apple.dock static-only -bool " & x
tell application "Dock" to quit



[ Reply to This | # ]
AppleScript to Toggle Modes...
Authored by: asmeurer on Jan 08, '09 09:42:45AM

Thanks for this script. I might just use proxi to assign a keyboard shortcut to this.



[ Reply to This | # ]