DJMirror allowing screen data from S8 / S5 / D2 to be displayed on external monitor

124»

Comments

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

    Working on it … problem must be something stupidly simple…. ^^

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 3,446 mod
    edited 2:12AM

    Okay, this is now the complete set of window shortcuts so far, although [C] is not working for me for some reason:

    • [+/-] Waveform zoom
    • [A] Toggle window frame (max out window)
    • [D] Toggle deck view (AtoCtoA or BtoDtoB
    • [L] Open browser view
    • [V] Toggle split deck view
    • [C] Open config

    You can change '[L] Open browser view' into a toggle, so that when you open it, you don't need to load a track with the mouse (and the mouse-click in particular) to close it.

    Go to line 454 of the following file:

    '…\Native Instruments\Traktor Pro 4\Resources64\qml\Screens\S8MIRROR\Views\MirrorWindow.qml'

    I commented out one line and replaced it with another (just compare):

    // Añadir el Shortcut para el browser (L > Load)
    Shortcut {
      sequence: "L"  // Browser toggle
      onActivated: {
        // Mostrar el navegador para cargar una pista
        touchPanelButton.isPanelVisible = false
        // showBrowserView()
        toggleBrowserView()
      }
    }
    

    :)

  • myalteredsoul
    myalteredsoul Member Posts: 274 Pro
    edited 4:12AM

    Linking it to a key on a keyboard isn't useful if you are trying to control it via midi. I attempted to map it to the global midi button in the qml, but doing so prevents s8mirror from loading altogether.

    Got it to load now with it wired to global midi button, but the global midi button wire does not work with s8mirror. However, it is pulling the browser up on the S8 itself, so there may need to be something changed in s8mirror to add midi functionality.

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

    This is not a part of my attempt to solve your problem. These are just things i found out while reading the code and might be of interest to some users.

Back To Top