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


Click here to return to the 'Toggle Clock window easily in 10.3 via Applescript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Toggle Clock window easily in 10.3 via Applescript
Authored by: DougAdams on Apr 20, '04 07:24:18AM
Or this nuanced variation:
tell application "System Events"
	if (get name of processes contains "WindowClock") then
		tell application "WindowClock" to quit
	else
		tell application "WindowClock" to run
	end if
end tell
Whatever! Enjoyed the idea. : )

[ Reply to This | # ]