Applescriptでアプリを書きだした時,実行する度にドックでアイコンが一瞬バウンドするのを防ぐにはLSBackgroundOnlyキーをTrueにしてやると良い.
以下を.app/Contents/info.plstに追加する
<key>LSBackgroundOnly</key>
<string>1</string>
以下のように一発で設定することもできる.
/usr/libexec/PlistBuddy -c 'Add :LSBackgroundOnly bool true' ~/Applications/test.app/Contents/Info.plist