Hi John;

RE_SS_Special_Mappings.exe is an autohotkey script. the main purpose is to make the Multitrack the active window to make sure that Play and pause always work no matter which screen was active

it looks as follows before compiled into an .exe file that I run at startup.

it also changes the [print screen] / [scroll lock] keys into copy and paste commands, (call me Lazy!)

---------------------------------------------------------

#NoEnv
#MaxHotkeysPerInterval 500
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
#InstallKeybdHook
#WinActivateForce

SetNumLockState, On
PrintScreen::^c
ScrollLock::^v

#IfWinExist ahk_class SAWSTUDIO_MULTITRACK
~:: WinActivate, ahk_class SAWSTUDIO_MULTITRACK
return

-------------------------------------------------------------------------------------

Cheers..