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


Click here to return to the 'Also works with Character Palette' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Also works with Character Palette
Authored by: SimonDorfman.com on Feb 26, '04 05:17:55PM
Thanks for the script. I modified it to work with the Character Palette which I use quite often. (normally you would launch it here: Finder Menu -> Edit -> Special Characters...)

tell application "System Events"
	if exists process "CharPaletteServer" then
		try
			quit application "CharPaletteServer"
		end try
	end if
end tell

tell application "Finder"
	open item "System:Library:Components:CharacterPalette.component:Contents:SharedSupport:CharPaletteServer.app" of the startup disk
end tell
or click here to open this script in Script Editor. (More info about how to make links like this here.)

[ Reply to This | # ]