Hello,
I would like to make a blinking effect to a slider ONLY when the slider is on a hot_cue position.
So not when the slider is on the temporary cue.
I can visualize the hotcue with this second part of the script, but nog blinking when the hotcue is pressed.
See my script below. (this aint working).
<!--blink if active hotcue-->
<slider action="cue_pos" color="cue_color 1" visibility="hot_cue 1? blink 500ms : nothing">
<size width="787" height="100"/>
<pos x="245" y="1590-10-230+55"/>
<fader>
<size width="41" height="41" />
<off color="white"/>
</fader>
</slider>
<!--hotcue on songpos-->
<slider action="cue_pos 1" visibility="hot_cue 1">
<size width="785" height="100"/>
<pos x="245" y="1590-10-230+55"/>
<fader>
<size width="35" height="35" />
<off color="#fd0015"/>
<text font="arial" dx="+0" dy="+0" fontsize="34" align="center" weight="bold" color="black" text="A"/>
</fader>
Any ideas?
gr. Marcel
I would like to make a blinking effect to a slider ONLY when the slider is on a hot_cue position.
So not when the slider is on the temporary cue.
I can visualize the hotcue with this second part of the script, but nog blinking when the hotcue is pressed.
See my script below. (this aint working).
<!--blink if active hotcue-->
<slider action="cue_pos" color="cue_color 1" visibility="hot_cue 1? blink 500ms : nothing">
<size width="787" height="100"/>
<pos x="245" y="1590-10-230+55"/>
<fader>
<size width="41" height="41" />
<off color="white"/>
</fader>
</slider>
<!--hotcue on songpos-->
<slider action="cue_pos 1" visibility="hot_cue 1">
<size width="785" height="100"/>
<pos x="245" y="1590-10-230+55"/>
<fader>
<size width="35" height="35" />
<off color="#fd0015"/>
<text font="arial" dx="+0" dy="+0" fontsize="34" align="center" weight="bold" color="black" text="A"/>
</fader>
Any ideas?
gr. Marcel
Posted yesterday @ 6:17 pm
visibility="hot_cue 1? blink 500ms : nothing"
needs a space between hot_cue 1 , ?
needs a space between hot_cue 1 , ?
Posted yesterday @ 8:46 pm
Hi, i have tried this but didn`t make a difference. When using "hotcue 1 ?" it checks if it has a hotcue and not when the position is on hotcue 1.
I script it in an other way (see below). This time it looks to the position of the cue (hotcue in my case) but the problem is the blinking effect also occur on the tempory cue when i move the slider on the position of the hotcue and only when the track is in pause mode.
If the track is playing and the position goes over the hotcue you don`t notice the blinking.
It would sure not be a big problem, but it gives me deeper knowledge how VDJ skin scripting works.
<!--temporary cue-->
<slider action="cue_pos" color="cue_color 1" visibility="true">
<size width="785" height="100"/>
<pos x="247" y="1590-10-230+53"/>
<fader>
<size width="40" height="40"/>
<off color="alpha"/>
<text font="arial" dx="+0" dy="+0" fontsize="43" align="center" weight="bold" color="red" text="▼"/>
</fader>
</slider>
<!--blink if active hotcue-->
<slider action="cue_pos" color="white" visibility="cue 1 ? blink 400ms : cue 2 ? blink 400ms : cue 3 ? blink 400ms : cue 4 ? blink 400ms :
cue 5 ? blink 400ms : cue 6 ? blink 400ms : cue 7 ? blink 400ms : cue 8 ? blink 400ms :
false">
<size width="779" height="100"/>
<pos x="250" y="1590-10-230+78"/>
<fader>
<size width="34" height="5" />
<off color="white"/>
</fader>
</slider>
I script it in an other way (see below). This time it looks to the position of the cue (hotcue in my case) but the problem is the blinking effect also occur on the tempory cue when i move the slider on the position of the hotcue and only when the track is in pause mode.
If the track is playing and the position goes over the hotcue you don`t notice the blinking.
It would sure not be a big problem, but it gives me deeper knowledge how VDJ skin scripting works.
<!--temporary cue-->
<slider action="cue_pos" color="cue_color 1" visibility="true">
<size width="785" height="100"/>
<pos x="247" y="1590-10-230+53"/>
<fader>
<size width="40" height="40"/>
<off color="alpha"/>
<text font="arial" dx="+0" dy="+0" fontsize="43" align="center" weight="bold" color="red" text="▼"/>
</fader>
</slider>
<!--blink if active hotcue-->
<slider action="cue_pos" color="white" visibility="cue 1 ? blink 400ms : cue 2 ? blink 400ms : cue 3 ? blink 400ms : cue 4 ? blink 400ms :
cue 5 ? blink 400ms : cue 6 ? blink 400ms : cue 7 ? blink 400ms : cue 8 ? blink 400ms :
false">
<size width="779" height="100"/>
<pos x="250" y="1590-10-230+78"/>
<fader>
<size width="34" height="5" />
<off color="white"/>
</fader>
</slider>
Posted 5 hours ago





