View Single Post
Old 11-04-2017, 06:03 PM   #5
FnA
Human being with feelings
 
FnA's Avatar
 
Join Date: Jun 2012
Posts: 2,173
Default

Just made these. Don't know if all bases covered...

Code:
// toggle monitor fx window.eel

mt = GetMastertrack(0);
TrackFX_GetRecChainVisible(mt) == (-1) ? (
  Main_OnCommand(41882, 0); // show
):(
  TrackFX_Show(mt, 0x1000000, 0); // hide
);

function noundo() (abs(0));
defer("noundo()");
Code:
// hide monitor fx window.eel

TrackFX_Show(GetMastertrack(0), 0x1000000, 0);

function noundo() (abs(0));
defer("noundo()");
FnA is offline   Reply With Quote