This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
* ReaScript Name: Toggle docked MIDI editor | |
* Author: Jason Tackaberry (tack) | |
* Licence: Public Domain | |
* Extensions: None | |
* Version: 1.0 | |
--]] | |
MIDI_SECTION_ID = 32060 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bank 32 0 UACC | |
0 undefined | |
1 long | |
2 long alt | |
3 8ve | |
4 8ve con sord | |
5 1/2 con sord | |
6 1/2 muted | |
7 con sord |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
* ReaScript Name: Select Track By Name - Next | |
* Description: Advance to the next track matched by the main "Select Track by Name" script. | |
* Author: Jason Tackaberry (tack) | |
* Licence: Public Domain | |
* Extensions: SWS/S&M 2.8.0 | |
* Version: 1.0 | |
--]] | |
function focusTrack(track, multiselect) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Must be compiled using SublimeKSP: https://github.com/nojanath/SublimeKSP/ | |
on init | |
declare const CC1_MIN_THRESHOLD := 30 | |
declare read last_cc_in[128] := (127) | |
declare read last_cc11_out := 127 | |
declare value | |
end on | |
on midi_in | |
if MIDI_COMMAND = MIDI_COMMAND_CC and (MIDI_BYTE_1 = 1 or MIDI_BYTE_1 = 11) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dump("*** child context\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Version 1.0 | |
-- | |
-- This script toggles visibility of all instrument FX on the selected tracks. | |
-- It requires that the FX be prefixed with "VSTi:" (which Reaper does do by | |
-- default). | |
-- | |
-- Released to the public domain. | |
for idx = 0, reaper.CountSelectedTracks(0) - 1 do | |
track = reaper.GetSelectedTrack(0, idx) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Version 1.1 | |
-- | |
-- This script toggles FX online/offline, FX bypass, and track lock on | |
-- all selected tracks. | |
-- | |
-- SWS cycle actions can be used for toggling only online and lock, but | |
-- not if you also want to include FX bypass. | |
-- SWS is required (http://www.sws-extension.org/) | |
-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Version 1.2 | |
-- | |
-- This script toggles visibility of all tracks that have a VSTi FX. | |
-- It requires that the FX be prefixed with "VSTi:" (which Reaper | |
-- does do by default). Care is taken to preserve existing TCP/MCP | |
-- visibility when the filter is toggled off. | |
-- | |
-- SWS is required (http://www.sws-extension.org/) | |
-- | |
-- Released to the public domain. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Unbypasses and onlines all FX for selected tracks | |
-- | |
-- Released to the public domain. | |
lastSelection = '' | |
function enableFX() | |
-- Track: Unlock track controls | |
reaper.Main_OnCommandEx(41313, 0, 0) | |
-- Unbypass FX of selected tracks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Version 1.1 | |
-- | |
-- This script toggles visibility of all tracks that have a VSTi FX. | |
-- It requires that the FX be prefixed with "VSTi:" (which Reaper | |
-- does do by default). Care is taken to preserve existing TCP/MCP | |
-- visibility when the filter is toggled off. | |
-- | |
-- SWS is required (http://www.sws-extension.org/) | |
-- | |
-- Released to the public domain. |