★☆ 書き込めない人のレス代行します 166 ☆★

このエントリーをはてなブックマークに追加
560Classical名無しさん
宜しくお願いします。

【スレのURL】 http://anago.2ch.net/test/read.cgi/iPhone/1355567286/
【名前欄】
【メール欄】 sage
【本文】↓
>719
MacならばAppleScriptで出来た。環境:MacOS 10.6.8/Evernote 5.0.7
.app形式ならPFKeyAvailer、.scpt形式ならFastScriptsやSpark等を使えばホットキーを登録できる。

tell application "Evernote"
activate
--collection windowならば新規ウインドウを開く
if class of first window is collection window then
set slct to first item of (selection as list)
set nb to notebook of slct
tell nb
open note window with slct
end tell
end if
end tell
tell application "System Events"
tell process "Evernote"
activate
tell UI element 1 of scroll area 1 of scroll area 1 of window 1
repeat with g in groups
tell g
repeat with cb in checkboxes
--value of cb is 1に変更すれば全解除になる
if value of cb is 0 then
click cb
end if
end repeat
end tell
end repeat
end tell
end tell
end tell