From de4b06a8b6dda46de6b4f2cb753f4f0942249851 Mon Sep 17 00:00:00 2001 From: Laurence Dougal Myers Date: Sun, 2 Dec 2018 19:30:56 +1100 Subject: [PATCH] CC 58: Place a cue marker in Sound Forge 9 --- MidiRules.ahk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MidiRules.ahk b/MidiRules.ahk index 1892949..9ceaadb 100644 --- a/MidiRules.ahk +++ b/MidiRules.ahk @@ -40,6 +40,10 @@ ProcessCC(device, channel, cc, value) { } else if (cc = 57 and value != 0) { Send {Media_Next} DisplayOutput("Media", "Next") + } else if (cc = 58 and value != 0) { + ; Place a cue marker in Sound Forge 9 + ControlSend, , {Alt down}m{Alt up}, ahk_class #32770 + DisplayOutput("Sound Forge", "Place Cue Marker") } }