Logic Machine Forum
Right object type for Track Next/Previous - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8)
+--- Thread: Right object type for Track Next/Previous (/showthread.php?tid=207)



Right object type for Track Next/Previous - managementboy - 03.02.2016

I am having trouble deciding how to implement a Next Track .. Previous Track for my sound system as objects. Should I use two separate objects?


RE: Right object type for Track Next/Previous - admin - 03.02.2016

Our KNX control for streaming player uses single object - 0 (false) for previous track, 1 (true) for next track


RE: Right object type for Track Next/Previous - managementboy - 05.02.2016

(03.02.2016, 16:10)admin Wrote: Our KNX control for streaming player uses single object - 0 (false) for previous track, 1 (true) for next track

thanks, probably I did not state my problem correctly. In the touch visualisation: what kind of "button" would give me the traditional look of next/previous. 

The problem with true/false is that if I want to jump next,next,next the object switches true,false,true.


RE: Right object type for Track Next/Previous - edgars - 05.02.2016

Hi Elkin!
use Send Fixed Value = 1 parameter when adding Binary object on the visualization - this will be used as NEXT button.
Similar for PREVIOUS button.


RE: Right object type for Track Next/Previous - managementboy - 09.02.2016

(05.02.2016, 12:48)edgars Wrote: Hi Elkin!
use Send Fixed Value = 1 parameter when adding Binary object on the visualization - this will be used as NEXT button.
Similar for PREVIOUS button.

thanks!!!