[solved] Loop state not always outputting MIDI ?

I've mapped certain functions to MIDI out for Quneo controller leds. Everything is working fine except for the loop function. It won't always light the led while a part is looping. Sometimes I need to press reloop in order to get the led activated. Any idea why this is happening ?
this is how I have it in the script
for lighting the led when loop is on
and off
Am I doing something wrong here ?
P.S. Also are there any simple (independent of onscreen activity or player functions) output commands just to activate a MIDI note so I could highlight certain leds.
this is how I have it in the script
for lighting the led when loop is on
- Code: Select all
<control alias="fam(Player)[0x1].LoopOnOff" value="true"/>
<MIDI type="Note" parameter="0x9" channel="0x1" value="127"/>
and off
- Code: Select all
<control alias="fam(Player)[0x1].LoopOnOff" value="false"/>
<MIDI type="Note" parameter="0x9" channel="0x1" value="0"/>
Am I doing something wrong here ?

P.S. Also are there any simple (independent of onscreen activity or player functions) output commands just to activate a MIDI note so I could highlight certain leds.