まだまだ作業効率化はできるし、
極力手首に負担がないように
よく使うショートカットや動作は
AppleScriptで制御しています。
Mitsuda Setが間もなく出来上がります。
これが出来れば手首への負担、
作業効率の大幅アップが期待できます。
AppleScriptは簡単だけどVerによって
コマンドも違うし、バグも多いので
回避しながらソースを書くのが大変だった。

ソースは下記のような感じ。
そんなに難しくはないです。
(まーこれは簡単な動きのソースですが)

tell application “Digital Performer”
activate
end tell
tell application “System Events”
tell process “Digital Performer”
set frontmost to true
tell menu bar 1
tell menu bar item “Region”
tell menu “Region”
pick menu item “Change Velocity…”
end tell
end tell
end tell
end tell
set position of first window of application process “Digital Performer” to {200, 200}
tell process “Digital Performer”
do shell script “/usr/bin/cliclick c:353,268”
key down command
key down shift
key code 126
key up shift
key up command
key code 125
keystroke return
key code 48
delay 0.1
keystroke “-10”
delay 0.1
keystroke return
end tell
end tell