Go Back   Cockos Incorporated Forums > REAPER Forums > REAPER Color Themes and Icon Sets

Reply
 
Thread Tools Display Modes
Old 02-23-2023, 07:44 AM   #1
christian64
Human being with feelings
 
christian64's Avatar
 
Join Date: Apr 2014
Location: Bayonne
Posts: 390
Default How to change the color of the transport status text when Reaper is recording

Hi,
I wanted to know if it was possible to change the color of the transport status text when Reaper is recording (as on Logic)
Thanks in advance,
Christian
christian64 is offline   Reply With Quote
Old 02-23-2023, 07:52 AM   #2
DrKev
Human being with feelings
 
DrKev's Avatar
 
Join Date: Mar 2015
Location: Paris, France
Posts: 273
Default

The color and font is not set by WALTER, it's set in the Theme Tweaker, so I think the answer is "no".
__________________
Musician / Guitar Teacher/ Guitar Tech / ex-Physicist (hence the Dr in DrKev)
DrKev is offline   Reply With Quote
Old 02-23-2023, 07:55 AM   #3
vitalker
Human being with feelings
 
vitalker's Avatar
 
Join Date: Dec 2012
Posts: 12,612
Default

Perhaps you'd like red bar while recording instead?
https://forum.cockos.com/showthread.php?t=99103
__________________
DonateSoundCloudAll the REAPER names
vitalker is online now   Reply With Quote
Old 02-23-2023, 07:59 AM   #4
White Tie
Pixel Pusher
 
White Tie's Avatar
 
Join Date: Mar 2007
Location: Blighty
Posts: 4,331
Default

Indeed, I'm afraid not. We can't change the colour of that with WALTER, and even if we could we can't change things in WALTER based on whether Reaper is recording. Sorry.
__________________
The House of White Tie
White Tie is offline   Reply With Quote
Old 02-24-2023, 01:55 AM   #5
christian64
Human being with feelings
 
christian64's Avatar
 
Join Date: Apr 2014
Location: Bayonne
Posts: 390
Default

Thank you very much for your answers.
christian64 is offline   Reply With Quote
Old 04-05-2023, 12:53 PM   #6
lexaproductions
Human being with feelings
 
Join Date: Jan 2013
Posts: 983
Default

An easy alternative is to change your record command and assign it to this instead:

Code:
local default_col = 0x808080 -- Set this value to the default color you want
local record_col = 0xCC0000 -- Set this value to the red color you want

reaper.Main_OnCommand(1013, 0) -- Record Command
local color = reaper.GetPlayState()&4 == 4 and record_col or default_col
reaper.SetThemeColor('col_trans_fg', color, 0)
And to make sure your color is always reset on stop you change your Spacebar action to this:
Code:
local default_col = 0x808080 -- Set this value to the default color you want

reaper.Main_OnCommand(40044, 0) -- Play stop command
reaper.SetThemeColor('col_trans_fg', default_col, 0)
You can even map those scripts to the Transport buttons with the new addition of WALTER's custom buttons. But this is another subject
lexaproductions is offline   Reply With Quote
Old 04-05-2023, 10:40 PM   #7
christian64
Human being with feelings
 
christian64's Avatar
 
Join Date: Apr 2014
Location: Bayonne
Posts: 390
Default

Thanks for answer!!

"local record_col = 0xCC0000 -- Set this value to the red color you want"

Can you tell me where to find these color codes, please?
Thanks in advance...
christian64 is offline   Reply With Quote
Old 04-05-2023, 10:43 PM   #8
lexaproductions
Human being with feelings
 
Join Date: Jan 2013
Posts: 983
Default

I just googled
"rgb to hex"

There are plenty of tools to figure out the values.
lexaproductions 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 07:15 AM.


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