Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Denon Prime 4 : Change color LED ring
Hi,

I would like the change the color for the deck 4 LED ring on my Denon Prime 4. It's now orange, but deck 2 is red and it's hard to see the difference. I changed the color for deck 4 to purple in the Prime 4 settings, but it's still orange when I use it with VDJ.

It seems to use the skin deck colors now, but I can't change those in the default skin can I? In the mapper for the Prime 4, there's only a setting to change the deck select button color, not the ring and display color.

There is a LED_JOG_RING rule that says:

touchwheel_touch ? color 'white' : var '@$denonblinktime' 0 ? songpos_warning ? blink ? is_audible ? get_deck_color 'absolute' : color 'white' : color 'gray' : is_audible ? get_deck_color 'absolute' : color 'gray' : is_audible ? get_deck_color 'absolute' : color 'gray'

So I should be able to change the get_deck_color 'absolute' to a specific color, but no idea how...

 

geposted Fri 17 Jun 22 @ 5:53 pm
djdadPRO InfinityDevelopment ManagerMember since 2005
The key is named as .. LED_JOG_RING
You need to replace the part (you will find it 3 times in the action ) ...
 ... get_deck_color 'absolute' .. 

with ..
... action_deck 4 ? color 'magenta' : get_deck_color 'absolute' ... 


also ..
LED_DECK_4
deck 4 rightdeck ? color 'magenta' : color 'gray'


 

geposted Fri 17 Jun 22 @ 6:16 pm
That works perfectly, thanks :-)

Now only the cue button is still orange, but that's a minor detail. Can I change that too?
 

geposted Sat 18 Jun 22 @ 6:06 pm