01. Keyboard Viewerをトグル表示する ― 2013-04-19
よくKeyboard Viewerを利用しますが、標準の仕様ではキーボードショートカットがなく呼び出し易いとは言えないと感じていました。
’Applescript Keyboard Viewer’の検索結果、
https://discussions.apple.com/thread/3311601?start=0&tstart=0
の、lleeさんの2つのコメントを参照してkeyboardViewerをインストール(場所は任意で良さそうです)、Applescriptは
tell application "System Events"
if exists (process "Keyboard Viewer") then
click button 1 of window 1 of process "Keyboard Viewer"
else
-- インストールしたpathに書き換えてください
do shell script "/Applications/System/keyboardViewer"
end if
end tell
上記をAppleScript Editorでアプリとして編集保存すれば、呼び出し/非表示がトグルで可能です。
’Applescript Keyboard Viewer’の検索結果、
https://discussions.apple.com/thread/3311601?start=0&tstart=0
の、lleeさんの2つのコメントを参照してkeyboardViewerをインストール(場所は任意で良さそうです)、Applescriptは
tell application "System Events"
if exists (process "Keyboard Viewer") then
click button 1 of window 1 of process "Keyboard Viewer"
else
-- インストールしたpathに書き換えてください
do shell script "/Applications/System/keyboardViewer"
end if
end tell
上記をAppleScript Editorでアプリとして編集保存すれば、呼び出し/非表示がトグルで可能です。
コメント
トラックバック
このエントリのトラックバックURL: http://darzilin.asablo.jp/blog/2013/04/19/6782467/tb
※なお、送られたトラックバックはブログの管理者が確認するまで公開されません。
コメントをどうぞ
※メールアドレスとURLの入力は必須ではありません。 入力されたメールアドレスは記事に反映されず、ブログの管理者のみが参照できます。
※なお、送られたコメントはブログの管理者が確認するまで公開されません。