Quick Sign In:  

Forum: VirtualDJ Skins

Topic: VDJ Script "show_text" help!

This topic is old and might contain outdated or incorrect information.

sentrizHome userMember since 2011
Hello,


I recently bought a Hercules RMX and am very happy with it.

I remapped the "Down" key like so:
toggle 'shift'

it worked well,

but when press the down key on the RMX i would like it to say on screen "Shift on" or "Shift activate" or something

what would i need to add to the down key's mapping to do that also?

Thanks in Advance,
Senan.
 

Posted Thu 27 Oct 11 @ 12:16 pm
I have not had this problem with shifting. What I would suggest is that (first after waiting for a better response :P)
-Double check that you have the right script written: should look something like this : set **non shifted value ;$shift***shifted**; 1 while_pressed
-Try it on another key
-reinstall vdj.

good luck
 

Posted Mon 31 Oct 11 @ 10:41 am
@Sentriz:
You can't do it with textzones.
You have to do it with pannels.

You should an empty space on your skin.
Then create two graphics, one for SHIFT pressed and one for SHIFT not pressed.
Finally you have to add this code:
<pannel id="SHIFTON" group="SHIFT" visible="var_equal 'shift' 1 ? on">
<size width="70" height="20"/>
<pos x="550" y="100"/> <-This is the location of the empty space on your skin
<down x="550" y="3000"/> <-This is the location of the graphics when the SHIFT is pressed
</pannel>
<pannel id="SHIFTOFF" group="SHIFT" visible="var_equal 'shift' 0 ? on">
<size width="70" height="20"/>
<pos x="550" y="100"/> <-This is the location of the empty space on your skin
<down x="550" y="3020"/> <-This is the location of the graphics when the SHIFT is NOT pressed
</pannel>
 

Posted Mon 31 Oct 11 @ 1:31 pm


(Old topics and forums are automatically closed)