Hello,
I recently bought a Hercules RMX and am very happy with it.
I remapped the "Down" key like so:
deck 1 toggle 'shift' & deck 2 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.
I recently bought a Hercules RMX and am very happy with it.
I remapped the "Down" key like so:
deck 1 toggle 'shift' & deck 2 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.
Mensajes Sun 23 Oct 11 @ 12:57 pm
You need to create 2 panels for each deck.
Example for deck 1
<panel id="shiftleftoff" group="shifteft" visible="deck 1 var_equal 'shift' 1 ? false : true" >
<size width="50" height="16"/>
<pos x="70" y="300"/>
<down x="+0" y="+0"/>
</panel>
<panel id="shiftlefton" group="shiftleft" visible="deck 1 var_equal 'shift' 1 ? true : false">
<size width="50" height="16"/>
<pos x="70" y="300"/>
<down x="+0" y="+0"/>
</panel>
---
<textzone panel="shiftlefton" deck="1">
<size width="50" height="16"/>
<pos x="70" y="300"/>
<up x="+0" y="+0"/>
<text font="arial" size="16" color="white" align="left" format="SHIFT ON"/>
</textzone>
<textzone panel="shiftleftoff deck="1">
<size width="50" height="16"/>
<pos x="70" y="300"/>
<up x="+0" y="+0"/>
<text font="arial" size="16" color="red" align="left" format="SHIFT OFF"/>
</textzone>
You can do that with graphics too, but this way its easier.
If you need any further assistance please post in the Skin Forums.
NOTES.
1. The above code will work only with ver 7
2. You dont need to add deck 1 or deck 2 in your map code.
This should be enough
toggle 'shift'
3. Your Limited Edition version allows custom mapping of your device, only during the 20Days of Trial period. In case you need to continue using the Pro Full features with your Limited Edition you need to upgrade your software to Pro Full version at a significant discount
Example for deck 1
<panel id="shiftleftoff" group="shifteft" visible="deck 1 var_equal 'shift' 1 ? false : true" >
<size width="50" height="16"/>
<pos x="70" y="300"/>
<down x="+0" y="+0"/>
</panel>
<panel id="shiftlefton" group="shiftleft" visible="deck 1 var_equal 'shift' 1 ? true : false">
<size width="50" height="16"/>
<pos x="70" y="300"/>
<down x="+0" y="+0"/>
</panel>
---
<textzone panel="shiftlefton" deck="1">
<size width="50" height="16"/>
<pos x="70" y="300"/>
<up x="+0" y="+0"/>
<text font="arial" size="16" color="white" align="left" format="SHIFT ON"/>
</textzone>
<textzone panel="shiftleftoff deck="1">
<size width="50" height="16"/>
<pos x="70" y="300"/>
<up x="+0" y="+0"/>
<text font="arial" size="16" color="red" align="left" format="SHIFT OFF"/>
</textzone>
You can do that with graphics too, but this way its easier.
If you need any further assistance please post in the Skin Forums.
NOTES.
1. The above code will work only with ver 7
2. You dont need to add deck 1 or deck 2 in your map code.
This should be enough
toggle 'shift'
3. Your Limited Edition version allows custom mapping of your device, only during the 20Days of Trial period. In case you need to continue using the Pro Full features with your Limited Edition you need to upgrade your software to Pro Full version at a significant discount
Mensajes Mon 24 Oct 11 @ 12:32 am
I'm sorry, I don't understand,
Where does all that code go?
Where does all that code go?
Mensajes Tue 25 Oct 11 @ 11:44 am