Using AutoHotKey to addition each sound 10 seconds in Rig Manager

  • Hi guys,


    I just messed around with using AutoHotKey (AHK) to scroll through rigs in RM every 10 seconds. Works great for auditioning sounds.


    Install AHK.
    Make a .ahk file with this content:


    #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn ; Enable warnings to assist with detecting common errors.
    SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
    #Persistent
    SetTimer, PressTheKey, 10000
    Return


    PressTheKey:
    Send, {Down}
    Return


    Then just double click the script to run it. You can pause/end it in the notification area.


    Make sure RM is in "Instant Preview Mode"


    Enjoy gapless riffing :)

    Kemper PowerRack |Kemper Stage| Rivera 4x12 V30 cab | Yamaha DXR10 pair | UA Apollo Twin Duo | Adam A7X | Cubase DAW
    Fender Telecaster 62 re-issue chambered mahogany | Kramer! (1988 or so...) | Gibson Les Paul R7 | Fender Stratocaster HBS-1 Classic Relic Custom Shop | LTD EC-1000 Evertune | 1988 Desert Yellow JEM

  • Hehe glad some else (finally) found it useful :)

    Kemper PowerRack |Kemper Stage| Rivera 4x12 V30 cab | Yamaha DXR10 pair | UA Apollo Twin Duo | Adam A7X | Cubase DAW
    Fender Telecaster 62 re-issue chambered mahogany | Kramer! (1988 or so...) | Gibson Les Paul R7 | Fender Stratocaster HBS-1 Classic Relic Custom Shop | LTD EC-1000 Evertune | 1988 Desert Yellow JEM