Here is the first version of a mini template for the remix decks, that works with different resolutions. If I coded it well, it should work with any screen resolution.
As I dropped my iPad and as it is still ion repair, the template has an interface for iPhone so I could test the scriptcode.
To adapt the template for different UI configurations and screen resolution, you need to change a little but in function SetConfigData:
// *************************************************************************************
// Initialize the following vars with your Traktor UI configuration and your screen resolution.
// This info is needed to calculate the point that needs to be clicked in the remix deck to
// trigger the corresponding action.
// *************************************************************************************
// set your screen width in pixels here
initScreenWidth = 1920;
// set to 1 if the Global Section is enabled, set to 0 if is is hidden
initGlobalSection = 0;
// set to 1 if the EQ/Volume Fader panel betwen the decks is enabled, otherwise set to 0
initMixerFaderPanel = 0;
// set to 1 if Key etc panel between the decks is enabled, otherweise set to 0
initMixerKeyEtcPanel = 0;
// set to 1 if the Advanced Panel for Decks A&B is visible, otherwise set to 1
initAdvancedPanelAB = 0;
There are plenty comments in the code, so it should be easy to adapt the template.
Currently there are two constraints:
- Tempo Faders needs to be off
- Timecode Panel needs to be off
The screen resolution can be changed on the fly on the Screen Res interface; there are four buttons for some standard screen widths.
You can control all four decks as remix decks: switch between decks with the dA…dD buttons.
Pressing one of the pads starts the selected sample.
When holding the “SHIFT” button when pressing a pad, the sample is selected, but not started.
I wanted to see how works; this is needed in a real mapping to be able to change GAIN, PITCH, ect for any cell in the grid.
The Lemur template is here:
www.traktorbible.com/lemur/LemurRemixDeck.zip
Would be great if some other guys could play around a bit. I’m curious to hear if it works everywhere.
There is no MIDI mapping in the template. It uses Lemurs mouse out only
Rainer