Hello,
I would like ta display a pannel if the deck is loaded and if a variable = 1. And the same pannel must blink if the song ends
<pannel pannel="DECKMIX" id="JOG1" group="joggroupe" visible="var '$ONAIR1' 1 ? deck left loaded ? on : deck left songpos_remain 40000ms ? blink 500ms : off">
with this script, the pannel is on all the time
can you help me ?
I would like ta display a pannel if the deck is loaded and if a variable = 1. And the same pannel must blink if the song ends
<pannel pannel="DECKMIX" id="JOG1" group="joggroupe" visible="var '$ONAIR1' 1 ? deck left loaded ? on : deck left songpos_remain 40000ms ? blink 500ms : off">
with this script, the pannel is on all the time
can you help me ?
Posté Mon 04 Mar 13 @ 9:15 am
A panel can not blink.
It can be visible or not.
You need to have a button to blink inside that panel.
It can be visible or not.
You need to have a button to blink inside that panel.
Posté Mon 04 Mar 13 @ 11:35 am
well on a pannel can blink!
I used it in the millenium V3 (http://fr.virtualdj.com/addons/15672/Black_Millenium_v3.html)
for example alarm end of music, and it works perfectly !
<pannel pannel="DECKMIX" id="SYNCALARM1" visible="var_equal '$WD_BPMLR_SYNC' 0 ? blink 500ms : off">
<size width="157" height="119"/>
<pos x="1554" y="364"/>
<down x="87" y="1794"/>
</pannel>
I used it in the millenium V3 (http://fr.virtualdj.com/addons/15672/Black_Millenium_v3.html)
for example alarm end of music, and it works perfectly !
<pannel pannel="DECKMIX" id="SYNCALARM1" visible="var_equal '$WD_BPMLR_SYNC' 0 ? blink 500ms : off">
<size width="157" height="119"/>
<pos x="1554" y="364"/>
<down x="87" y="1794"/>
</pannel>
Posté Mon 04 Mar 13 @ 11:47 am
I didnt know that. It seems that blink toggles between true and false then.
Try this ..
visible="deck left loaded ? deck left songpos_remain 40000ms ? blink 500ms : var '$ONAIR1' 1 ? on : off : off"
Try this ..
visible="deck left loaded ? deck left songpos_remain 40000ms ? blink 500ms : var '$ONAIR1' 1 ? on : off : off"
Posté Mon 04 Mar 13 @ 1:37 pm
great, it works very well !
Thank you very much !
Thank you very much !
Posté Mon 04 Mar 13 @ 11:37 pm