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


Click here to return to the '10.4: Open Dashboard at login with AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Open Dashboard at login with AppleScript
Authored by: jdalbec on Sep 12, '08 08:27:10PM

ignoring application responses
tell application id "com.apple.dashboardlauncher" to launch
tell application id "com.apple.exposelauncher" to launch
tell application id "com.apple.exposelauncher" to launch
end ignoring



[ Reply to This | # ]
10.4: Open Dashboard at login with AppleScript
Authored by: jdalbec on Sep 12, '08 09:07:34PM

This works too (at least in 10.5 using Automator's "Run Applescript" action):

ignoring application responses
tell application "Dashboard"
launch
end tell
tell application "Expose"
launch
launch
end tell
end ignoring



[ Reply to This | # ]