TT by Power on

Carpenter
Carpenter Member Posts: 2 Newcomer

Is it possible to start the S4 MK3 in TT mode when switching on the power?
Software Traktor Pro 4

with kind regards
rené

Best Answer

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,509 mod
    Answer ✓

    I would try the following, although i never did try.

    Open the file '…\Native Instruments\Traktor Pro 4\Resources64\qml\CSI\S4MK3\S4MK3Deck.qml' with a decent coding editor. Go to line 88.

    Replace this:

    MappingPropertyDescriptor {
      id: jogMode
      path: deckPropertiesPath + ".jog_mode"
      type: MappingPropertyDescriptor.Integer
    }
    

    … with this:

    MappingPropertyDescriptor {
      id: jogMode
      path: deckPropertiesPath + ".jog_mode"
      type: MappingPropertyDescriptor.Integer
      value: JogwheelMode.Turntable
    }
    

Answers

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,509 mod
    Answer ✓

    I would try the following, although i never did try.

    Open the file '…\Native Instruments\Traktor Pro 4\Resources64\qml\CSI\S4MK3\S4MK3Deck.qml' with a decent coding editor. Go to line 88.

    Replace this:

    MappingPropertyDescriptor {
      id: jogMode
      path: deckPropertiesPath + ".jog_mode"
      type: MappingPropertyDescriptor.Integer
    }
    

    … with this:

    MappingPropertyDescriptor {
      id: jogMode
      path: deckPropertiesPath + ".jog_mode"
      type: MappingPropertyDescriptor.Integer
      value: JogwheelMode.Turntable
    }
    
  • Carpenter
    Carpenter Member Posts: 2 Newcomer

    I have changed it, started the controller and software, jog wheels start in jog mode and not in TT mode

    2025-05-27 17_23_03-C__Program Files_Native Instruments_Traktor Pro 4_Resources64_qml_CSI_S4MK3_S4MK.jpg
  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,509 mod

    As i feared.

    The new code setting for the MappingProperty is dependent on the hardware state, but not the other way around, which is what i found when trying to solve the red LED bug on the jog button. I never tried to set a new default. Any other attempt to change the jogwheel mode by code has failed in my experiments. Only the actual hardware buttons can trigger the hardware state change, it seems.

    Still worth a try. ;)

Back To Top