S4MK3 - Traktor 3.9 (Mac) - Change Color of Jogwheel

Options
djsepp
djsepp Member Posts: 18 Member

Hi,


anybody knows, how I can Change Color and blink at End of a Track on S4MK3? I past Version there was a settings.qml - but now it is gone...


BTW: Anybody knows, if Joe works on new Screen Hack?

Thank you :-)

Answers

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 1,817 mod
    Options

    You can change the colour for the whole deck in the file '...\Native Instruments\Traktor Pro 3\Resources64\qml\CSI\Common\DeckHelpers.js', lines 3++

    function colorForDeck(deckIdx)
    {
       switch (deckIdx)
       {
         case 1:
         case 2:
           // Deck A and B are color-coded in Blue
           return Color.Blue;
    
         case 3:
         case 4:
           // Deck C and D are color-coded in Orange
           return Color.LightOrange;
       }
    
       // Fall-through...
       return Color.Black;
    }
    

    You can use the following colours: Red, DarkOrange, LightOrange, WarmYellow, Yellow, Lime, Green, Mint, Cyan, Torquoise, Blue, Plum, Violet, Purple, Magenta, Fuchsia, White and Black.

    If you want, you can give every deck it's own colour, like this:

    function colorForDeck(deckIdx)
    {
       switch (deckIdx)
       {
         case 1:
           return Color.Plum;
         case 2:
           return Color.Cyan;
    
         case 3:
           return Color.WarmYellow;
         case 4:
           return Color.LightOrange;
       }
    
       // Fall-through...
       return Color.Black;
    }
    

    Both TrackEnd blinking JogWheel-LED and seperate colours for DECK and JogWheel is a lot more work as you can see when you study Joe's ScreenHack code. I don't know if he's pushing an update or not. 🦋

  • Oxy
    Oxy Member Posts: 89 Helper
    Options

    Was just looking for this 2 days ago. Thanks a bunch!

  • djsepp
    djsepp Member Posts: 18 Member
    Options

    Thank you. In last Versions, the flash of the Leds was only part of the qml files - no extra code made by Joe. Maybe we can only add this 😜

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 1,817 mod
    Options

    'Time Remaining' is already flashing the *TrackEndWarning'

Back To Top