Hi Guys,
I just made this keychanger on the default Pro (Hi Res) skin in v6
Is it possible to have the Reset button blink when the value is anything else but zero ?
Here is the code:
Key Change Channel 1
Down
<button action="deck 1 Key_move -1" >
<pos x="20" y="292"></pos>
<size width="20" height="17"></size>
<over x="116" y="3638"></over>
<down x="116" y="3670"></down>
</button>
<slider action="deck 1 key_move" orientation="round">
<size width="24" height="15"></size>
<pos x="46" y="293"></pos>
<fader>
<size width="24" height="15"></size>
<pos x="838" y="2929" nb="14"></pos>
</fader>
</slider>
Up
<button action="deck 1 Key_move 1" >
<pos x="76" y="292"></pos>
<size width="20" height="17"></size>
<over x="172" y="3638"></over>
<down x="172" y="3670"></down>
</button>
<slider action="deck 1 key_move" orientation="round">
<size width="24" height="15"></size>
<pos x="46" y="293"></pos>
<fader>
<size width="24" height="15"></size>
<pos x="838" y="2929" nb="14"></pos>
</fader>
</slider>
Reset
<button action="deck 1 Key 0" >
<pos x="109" y="292"></pos>
<size width="20" height="17"></size>
<over x="205" y="3638"></over>
<down x="205" y="3670"></down>
</button>
Any help would be much appreciated
Thanks in advance
Dave
I just made this keychanger on the default Pro (Hi Res) skin in v6
Is it possible to have the Reset button blink when the value is anything else but zero ?
Here is the code:
Key Change Channel 1
Down
<button action="deck 1 Key_move -1" >
<pos x="20" y="292"></pos>
<size width="20" height="17"></size>
<over x="116" y="3638"></over>
<down x="116" y="3670"></down>
</button>
<slider action="deck 1 key_move" orientation="round">
<size width="24" height="15"></size>
<pos x="46" y="293"></pos>
<fader>
<size width="24" height="15"></size>
<pos x="838" y="2929" nb="14"></pos>
</fader>
</slider>
Up
<button action="deck 1 Key_move 1" >
<pos x="76" y="292"></pos>
<size width="20" height="17"></size>
<over x="172" y="3638"></over>
<down x="172" y="3670"></down>
</button>
<slider action="deck 1 key_move" orientation="round">
<size width="24" height="15"></size>
<pos x="46" y="293"></pos>
<fader>
<size width="24" height="15"></size>
<pos x="838" y="2929" nb="14"></pos>
</fader>
</slider>
Reset
<button action="deck 1 Key 0" >
<pos x="109" y="292"></pos>
<size width="20" height="17"></size>
<over x="205" y="3638"></over>
<down x="205" y="3670"></down>
</button>
Any help would be much appreciated
Thanks in advance
Dave
Posted Sun 07 Feb 10 @ 5:04 pm
Oops, the image hasn't displayed, I must be doing something wrong !
http://i48.tinypic.com/2d921dv.jpg
http://i48.tinypic.com/2d921dv.jpg
Posted Sun 07 Feb 10 @ 5:06 pm
Hello,
You could try something like this:
<button action="deck 1 Key 0 & var_equal deck 1 key 0 ? nothing : on blink" >
<pos x="109" y="292"></pos>
<size width="20" height="17"></size>
<over x="205" y="3638"></over>
<down x="205" y="3670"></down>
</button>
You could try something like this:
<button action="deck 1 Key 0 & var_equal deck 1 key 0 ? nothing : on blink" >
<pos x="109" y="292"></pos>
<size width="20" height="17"></size>
<over x="205" y="3638"></over>
<down x="205" y="3670"></down>
</button>
Posted Sun 07 Feb 10 @ 6:29 pm
Thanks JeremK
It doesn't work straight off but I'll have a play with it, Thx again
Dave
It doesn't work straight off but I'll have a play with it, Thx again
Dave
Posted Tue 09 Feb 10 @ 12:29 pm