I'm in the process of adapting my touch screen skin to VDJ8 and noticed that when I try to use the volume slider of a deck, the program crashes...
This is the code for my slider:
<slider action="deck 1 level" orientation="vertical" direction="up">
<size width="43" height="460"/>
<pos x="619" y="37"/>
<up x="619" y="37"/>
<selected x="759" y="1118"/>
</slider>
Is there anything wrong with this code? I checked the VDJscript verbs and the SDK but couldn't find anything... What am I missing here?
This is the code for my slider:
<slider action="deck 1 level" orientation="vertical" direction="up">
<size width="43" height="460"/>
<pos x="619" y="37"/>
<up x="619" y="37"/>
<selected x="759" y="1118"/>
</slider>
Is there anything wrong with this code? I checked the VDJscript verbs and the SDK but couldn't find anything... What am I missing here?
Mensajes Sat 29 Aug 15 @ 6:05 pm
For slider elements you need to add a <FADER> element...
<slider action="deck 1 level" orientation="vertical" direction="up">
<size width="43" height="460"/>
<pos x="619" y="37"/>
<up x="619" y="37"/>
<selected x="759" y="1118"/>
<fader>
<size width="" height=""/>
<pos x="" y=""/>
</fader>
</slider>
<slider action="deck 1 level" orientation="vertical" direction="up">
<size width="43" height="460"/>
<pos x="619" y="37"/>
<up x="619" y="37"/>
<selected x="759" y="1118"/>
<fader>
<size width="" height=""/>
<pos x="" y=""/>
</fader>
</slider>
Mensajes Sat 29 Aug 15 @ 6:16 pm
I assume you are talking about the graphic for a slider button. In VDJ7 I didn't need one to make the slider work.
Since I am using a touch screen (for an older version, look here: http://www.virtualdj.com/forums/149368/VirtualDJ_Skins/the_ULTIMATE_TOUCH_SCREEN_SKIN.html), I don't need one, nor do I want one. The darker color indicates where I am in the slider...
So is the fader suddenly mandatory? If so, can I make it transparent, then?
Since I am using a touch screen (for an older version, look here: http://www.virtualdj.com/forums/149368/VirtualDJ_Skins/the_ULTIMATE_TOUCH_SCREEN_SKIN.html), I don't need one, nor do I want one. The darker color indicates where I am in the slider...
So is the fader suddenly mandatory? If so, can I make it transparent, then?
Mensajes Sat 29 Aug 15 @ 6:22 pm
Yo Phantom! Thanks for the tip! It now works :) yipeee!
For anyone interested: for touchscreen skins, just give everything in the fader part a value of 0 and it will be invisible!
;)
For anyone interested: for touchscreen skins, just give everything in the fader part a value of 0 and it will be invisible!
;)
Mensajes Sat 29 Aug 15 @ 6:26 pm