快速登录:  

Forum: VirtualDJ Skins

话题: I want to display the title and artist at the moment of transition
twagaPRO InfinityMember since 2009
https://www.youtube.com/watch?v=bzZF0xZ7AY8

Is there a way to display the title and artist on Video Skin for a few seconds from the moment the song changes, as in this video?

for example
<item class="filterpanel" visibility="is_using 'filter' 1000ms"></item>
is_using 1000ms displays the filterpanel for 1 second while operating the filter,

is there a way to express the timing as 1 second from the moment of transition?
 

发表时间 Sat 16 Jul 22 @ 5:49 pm
There are a few ways, but personally I would just query the "master" deck.
<item class="justapanel" visibility="masterdeck 1000ms"></item>
 

发表时间 Mon 18 Jul 22 @ 7:25 am
twagaPRO InfinityMember since 2009
PhantomDeejay wrote :
There are a few ways, but personally I would just query the "master" deck.
<item class="justapanel" visibility="masterdeck 1000ms"></item>


Thank you.Can you tell me the meaning of "masterdeck 1000ms"?

Does this mean that it will only be displayed for 1000ms after the master deck is switched?
 

发表时间 Wed 20 Jul 22 @ 4:40 pm
Yes it means that it will be visible for 1000ms (1 second) after the specified deck becomes "masterdeck"

PS: Since this is an item inside a stack, the stack normally would belong to a deck.
What I mean is that the code itself doesn't "turn on" every time masterdeck switches.
It turns on when a deck becomes masterdeck.

The end result will be pretty much the same for you (since you'll most probably have this script called 4 times, one for each deck)
But technically (if you wan to know better what's going on) there's a difference.
 

发表时间 Thu 21 Jul 22 @ 9:27 am