Mix Paste Without Confirmation
I'd like to request a key-shortcut to apply mix-paste with previous settings, so that you aren't always asked to reconfirm -
Apart from being useful in standard audio cleanup, I have an ulterior motive to go along with it -
I've developed an extension for Audition CC which allows you to do punch and roll recording (something that is requested really, really often) with crossblending of the record, re-punch, metronome, and adjustable prerolls. It's really slick!
However, there is one shaky part - to handle the blend of the newly recorded audio, I do an automated mix-paste with
app.invokeCommand('Edit.MixPaste')
. Most of the time, if I inject a
app.invokeCommand('Keyboard.Enter')
right afterward, I luck out, and it'll confirm the dialog and all is well.
Sometimes, however, for some timing related reasons that presumably have to do with script execution over time, it doesn't work.
The mix paste dialog is modal and doesn't allow commands to be invoked - so I can only sneak them in if I basically fire both events off simultaneously.
But it's just not reliable over the long haul.
This would be a non-issue if I could perform a mixpaste without confirmation though-
Howsabout it?
