Old 07-02-2020, 07:37 PM   #1
138BPM
Human being with feelings
 
Join Date: Dec 2019
Posts: 67
Default AutoIt2 scripts to quickly paste notes

If anyone wants to automate pasting notes in, I made a few scripts in AutoIt2 that do it (needs the sequencer window open and this will only paste notes in at the start of a block).

Why do that if you can just Ctrl + drag the block?

Well because if you Ctrl + drag, it also copies the channel levels too and you might not want to copy that, only the notes. Maybe there's a way to copy blocks without copying the channel levels but I don't know how, if it's possible at all, hence these scripts. Once click and it pastes the notes in then closes the sequencer window.

You need AutoIt2 installed for these scripts to run (as ".aut" files).

Replaces current notes:

Code:
SetTitleMatchMode, 2
;
WinWait, MIDI take, midipianoview
WinActivate, MIDI take, midipianoview
Send, {CTRLDOWN}
Send, a
Send, {CTRLUP}
Send, {DELETE}
Send, {HOME}
Send, ^v
Send, {ESCAPE}
Pastes notes without deleting what's already there:

Code:
SetTitleMatchMode, 2
;
WinWait, MIDI take, midipianoview
WinActivate, MIDI take, midipianoview
Send, {HOME}
Send, ^v
Send, {ESCAPE}

Last edited by 138BPM; 07-02-2020 at 07:43 PM.
138BPM is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 05:20 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.