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


Click here to return to the '10.5: Use Caps Lock to send keystrokes via AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.5: Use Caps Lock to send keystrokes via AppleScript
Authored by: NovaScotian on Feb 12, '08 08:53:59AM

All I get (OS X 10.5.2, dual-core G5) is a statement that the KeyboardViewerServer can't be found even though I can see it running in the Activity Monitor and it has a plist in ~/Library/Preferences folder. My Keyboard Viewer (US) window appears as it should if I invoke it from the Language dropdown menu but it doesn't respond to a command to activate.



[ Reply to This | # ]
10.5: Use Caps Lock to send keystrokes via AppleScript
Authored by: dietermay on Feb 13, '08 04:10:18AM

change the line
tell application "KeyboardViewerServer" to activate
to
tell application "/System/Library/Components/KeyboardViewer.component/Contents/SharedSupport/KeyboardViewerServer.app" to activate



[ Reply to This | # ]