Old 06-05-2023, 01:20 PM   #1
BRG
Human being with feelings
 
Join Date: Sep 2017
Posts: 30
Default Advise a good color script

Guys advise a good color script. I want to conveniently and quickly change the color of the tracks. I used the Default 6 Theme Adjuster before and it was handy. Now I'm using a different theme and it doesn't support it.
BRG is offline   Reply With Quote
Old 06-05-2023, 01:26 PM   #2
Coachz
Human being with feelings
 
Coachz's Avatar
 
Join Date: Oct 2010
Location: Charleston, SC
Posts: 12,793
Default

I rolled my own that searches for a track with the name click in it (you can remove that) and then colors my media items. Maybe you can get some ideas from it.

attached..

Last edited by Coachz; 08-15-2023 at 07:04 AM.
Coachz is online now   Reply With Quote
Old 06-05-2023, 03:20 PM   #3
Schöpke
Human being with feelings
 
Join Date: Jan 2013
Posts: 134
Default

I use this. Pretty rad:

https://forum.cockos.com/showthread.php?t=252219
__________________
OS: Windows 7, Reaper: v6 x64
RME Babyface (old one), ASIO Fireface USB
Technics SX-P50, Mackie MCU
Schöpke is offline   Reply With Quote
Old 06-05-2023, 07:46 PM   #4
User41
Human being with feelings
 
Join Date: Aug 2020
Posts: 244
Default

Quote:
Originally Posted by Schöpke View Post
I second Rodilab. I use my ‘C’ key to open it. Works on tracks and items very nicely.
User41 is offline   Reply With Quote
Old 06-05-2023, 08:27 PM   #5
SilenceBetweenWords
Human being with feelings
 
Join Date: Jul 2022
Posts: 36
Default

Tried many - Rodilab is definitely one of the best.
SilenceBetweenWords is offline   Reply With Quote
Old 06-06-2023, 12:55 AM   #6
BRG
Human being with feelings
 
Join Date: Sep 2017
Posts: 30
Default

Thank you all very much!
BRG is offline   Reply With Quote
Old 06-06-2023, 04:59 AM   #7
Coachz
Human being with feelings
 
Coachz's Avatar
 
Join Date: Oct 2010
Location: Charleston, SC
Posts: 12,793
Default

I also use SWS Auto color for track names so for example all tracks that have GTR get one color and all tracks with VOX get another color. That's a nice easy way to set up colors hierarchically from top to bottom


Last edited by Coachz; 06-06-2023 at 06:31 AM.
Coachz is online now   Reply With Quote
Old 06-12-2023, 10:08 AM   #8
DarrenH
Human being with feelings
 
Join Date: Mar 2014
Posts: 347
Default

Like Coachz, I rolled my own. Couldn't find anything as simple and easy as I wanted.

Created multiple colour buttons for my top toolbar. Each button triggers a custom script with a hard coded colour that works for whatever tracks or items you have selected at the time. Example below

Code:
if reaper.GetCursorContext2(true) == 0 then

	-- Track(s) last selected

	-- Get Reaper Command ID for SWS action "Set Selected Item(s) to Custom Color 1"
	command_id = reaper.NamedCommandLookup("_SWS_TRACKCUSTCOL2")
	reaper.Main_OnCommand(command_id,0)
	reaper.Main_OnCommandEx(reaper.NamedCommandLookup( command_id), 0, 0)
	--

elseif reaper.GetCursorContext2(true) == 1 then

	-- Item(s) last selected

	-- Get Reaper Command ID for SWS action "Set Selected Track(s) to Custom Color 1"
	command_id = reaper.NamedCommandLookup("_SWS_ITEMCUSTCOL2")
	reaper.Main_OnCommand(command_id,0)
	reaper.Main_OnCommandEx(reaper.NamedCommandLookup( command_id), 0, 0)
	--

end
DarrenH is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 10:41 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.