Fastest way to copy pattern to another instrument pattern with Autohotkey

Discuss how to use FL Studio

Return to “FL Studio Users Forum (Looptalk)”

Forum rules
Please read them here.
[You can only see part of this thread as you are not logged in to the forums]
suvinmusic
Thu Mar 23, 2023 5:57 am

x

Fastest way to copy pattern to another instrument pattern with Autohotkey

Place the mouse pointer over the pattern in playlist, Alt + c to copy, Alt + v to paste.

Source pattern can only have midi data one channel. Destination pattern needs to be placed in an instrument track for it to work properly.

Code: Select all

#SingleInstance Force
#IfWinActive ahk_class TFruityLoopsMainForm ; only run the script if FL Studio is the active window
!c::
Send p
Send {Lbutton}
Send {Lbutton}
Send ^a
Send ^c
Send {F7}
return

!v::
Send p
Send {Lbutton}
Send {Lbutton}
Send ^a
Send ^v
Send {F7}
return

#IfWinActive ; end the #IfWinActive directive

Return to “FL Studio Users Forum (Looptalk)”