Hi, how can i add out the of the sound of the kit, its to display on a led, right now i used an array to save the string
how can i add out the VALUE of the sound of the kit
I don't quite understand the question. Here's a small qml example (fx.1.kitSelect) with Bowser encoders changing the value
Wire { from: "%surface%.browse.encoder"; to: RelativePropertyAdapter { path: "app.traktor.fx.1.kitSelect"; step: 1; mode: RelativeMode.Stepped } }
OR:
Switch through the loaded kit with the (PREV, NEXT) pads 5-6
AppProperty { id: fx_button_1; path: "app.traktor.fx.1.buttons.1" } AppProperty { id: fx_button_2; path: "app.traktor.fx.1.buttons.2" } Wire { from: "%surface%.pads.5"; to: ButtonScriptAdapter { onPress: fx_button_1.value = true onRelease: fx_button_1.value = false } } Wire { from: "%surface%.pads.6"; to: ButtonScriptAdapter { onPress: fx_button_2.value = true onRelease: fx_button_2.value = false } }