X1MK3: Community Performance MOD (qml coding)

1293031323335»

Comments

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,379 mod

    ;)

    The first page (instructions, download link) has a lot of information. This is why 'Read Carefully' at the beginning has such big letters. :)

  • pixel
    pixel Member Posts: 385 Pro

    Hello.
    Yesterday I wished for a small improvement on the x1 ^^.
    In Mixer-mode, you can select the opposite (secondary) decks by double-clicking the Mode-button.
    In Effects-mode, I would love to be able to switch between effect units by double-clicking the Mode-button.😊

    If that doesn't make sense, I think I could make that change myself.🙂

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,379 mod
    edited April 13

    Go to setup. Press the topmost button on the left side. Done.

    On page 1 it says about Setup settings:

    • Left Button 1 (MODE SingleClick switches Decks): changes MODE Single-Tap to switching Decks, and setting MODE Double-Tap to switching FX-Layers.

  • pixel
    pixel Member Posts: 385 Pro
    edited April 14

    I've tried this setting too.😥
    I think I need a holiday.🤪

    edit: now it works I had deactivated the one setting on the right side (FX UNITS LINKED)

    With the 2 settings it is even better than I imagined🤗

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,379 mod
  • pixel
    pixel Member Posts: 385 Pro

    by Right I meant (cyan: FX UNITS LINKED).😂
    I still have one more room to Wallpapering😝, then I'll have wallpapered a friend's entire 4-room apartment😋

  • pixel
    pixel Member Posts: 385 Pro
    edited April 14

    Take a look at my setting.😂
    can also disable the decks changing with the mode-button?

    i will have another look at the instructions tonight😁

    edit: without the video this is bad😆

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,379 mod

    The video you posted shows what is supposed to happen. With both toggles active, a single tap will switch decks AND switch FX to align with decks (A to 1, D to 4 etc.)

  • pixel
    pixel Member Posts: 385 Pro

    I have another question.
    how would you implement this if i change the deck selection with the x1 and the deck selection also changes on the s3. would you do this with a midi button? or can i also create a global variable for x1 and s3?

  • JamusJae
    JamusJae Member Posts: 13 Member

    Hello again. Very happy with your mapping especially the super knob behaviour for stems. Can I midi map over this mapping I want to remap the nudge buttons and rev, I am fairly skilled at mapping.

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,379 mod

    Glad you like it. Superknobs where really Stevans idea, not mine. I only devised the qml variant.

    If you want to apply your mapping skills, you should really just go ahead and try. Ask for help if you come across problems. ;-)

  • pixel
    pixel Member Posts: 385 Pro

    my example above is also stupid.😄
    last try^^
    i want to merge the S3 with X1 you have created a very nice DEVICE SETUP function for the X1 with display now i want to create a second DEVICE SETUP level for the S3Mod so i want a level DEVICE S3 SETUP so that i can make settings with the X1 on the S3 with display.
    now my question is the best way to solve this with midi button or how would you pass a variable from the X1 to the S3? i would like to create this just for me😊

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,379 mod

    Yup.

    MappingPropertyDescriptor definitions in S3,qml for your settings.

    Add AppPropertyDescriptors for each MIDIbutton; make them each adjust the MappringPropertyDescriptors when changed.

    MappingPropertyDescriptor {
      id: settingButton1Prop;
      path: "mapping.setting.setting_button_1";
      type: MappingPropertyDescriptor.Boolean;
      value: false;
    } AppProperty { id: midiButton1; path: "app.traktor.midi.buttons.1"; onValueChanged: settingButton1Prop.value = value }

    In the setup of X1, add a TogglePropertyAdapter for each button, with 'path: "app.traktor.midi.buttons.X"

    You can use the number buttons at the bottom.

  • pixel
    pixel Member Posts: 385 Pro

    I almost thought so.
    yes, the pads1-4 are great because I save a lot of work😊

Back To Top