CC 58: Place a cue marker in Sound Forge 9

This commit is contained in:
Laurence Dougal Myers 2018-12-02 19:30:56 +11:00
parent 5e06493275
commit de4b06a8b6

View File

@ -40,6 +40,10 @@ ProcessCC(device, channel, cc, value) {
} else if (cc = 57 and value != 0) { } else if (cc = 57 and value != 0) {
Send {Media_Next} Send {Media_Next}
DisplayOutput("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")
} }
} }