快速登录:  

Forum: VirtualDJ Skins

话题: VDJ Script "show_text" help!

由于该帖子已年深日久,可能包含陈旧过时或描述错误的信息。

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.
 

发表时间 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
 

发表时间 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>
 

发表时间 Mon 31 Oct 11 @ 1:31 pm


(陈旧帖子或论坛版块会自动关闭)