2017-03-24 16 views
0

上付き文字と下付き文字を入力するためにNotesアプリケーションにショートカットを追加しようとしています。以下のスクリプトはエラーを表示せず、正しく「上付き文字」サブメニュー項目を検索/クリックするようですが、メモアプリに戻ったときにこのオプションは有効になっていません。その下の行のコメントを外すと、その機能(「Notesヘルプ」を開くこと)が完全に機能します。AppleScriptがメニュー項目をクリックしていない

tell application "System Events" 
    tell process "Notes" 
     click menu item "Superscript" of menu 1 of menu item "Baseline" of menu 1 of menu item "Font" of menu "Format" of menu bar 1 
     -- click menu item "Notes Help" of menu "Help" of menu bar 1 
    end tell 
end tell 

私は間違っていますか?

答えて

0

AppleScriptコードは通常、個人的なスタイルに関するものですが、私はこれをツールバーのプロービングからすばやく書いています。テストされ正常に動作しています。

tell application "Notes" to activate -- needed because you say "but when returning to the notes app" meaning you're not there already 

-- tell System Events to Click, not tell system events to tell process to click... process doesn't understand click. 

tell application "System Events" 
    click menu item "Superscript" of menu "Baseline" of menu item "Baseline" of menu "Font" of menu item "Font" of menu "Format" of menu bar item "Format" of menu bar 1 of application process "Notes" of application "System Events" 
end tell 
関連する問題