Hi, as the title of this post says, I just wanted to ask if there's any way to change the color of decks in my S4MK3.
Also, my partner has a S3 and wants to change the deck color when looping.
Any help is appreciated!
Then, it is either on some other files, either they have removed that option.
You have to open all relative files, one by one, to see where it might be.
This one?
Edit: changing colour when looping is bit more work.
For the S3
'...\Native Instruments\Traktor Pro 3\Resources64\qml\CSI\S3\S3Deck.qml', line 18
Change
聽readonly property var deckColor: Helpers.colorForDeck(module.deckIdx)
Into
//聽readonly property var deckColor: Helpers.colorForDeck(module.deckIdx) 聽readonly property var deckColor: loopActive.value ? Color.Green : Helpers.colorForDeck(module.deckIdx)
For the S4
'...\Native Instruments\Traktor Pro 3\Resources64\qml\CSI\S4\S4Deck.qml', line 22
聽property var deckColor: Helpers.colorForDeck(deckIdx)
聽 // property var deckColor: Helpers.colorForDeck(deckIdx) 聽 property var deckColor: loopActive.value ? Color.Green : Helpers.colorForDeck(deckIdx) 聽 AppProperty { id: loopActive; path: "app.traktor.decks." + deckIdx + ".loop.is_in_active_loop" }
Color.Green can also be any other colour, as per my previously posted link above.
Check this video and follow instructions
The "S4MK3Functions.js" file doesn't exist anymore in Traktor Pro 3.9.0
ok, then check for ...\Resources64\qml\Screens\S4MK3\Views\Colors.qml
open it with a text editor and have a look there.
I've just checked but this file is for the screen's waveform coloring and musical key coloring.
Thanks, It worked!!