Quick Sign In:  

Forum: VirtualDJ Skins

Topic: Blinc Sync Button on Beat?

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

How can I make thats the Sync Button or others blink to the Beat , in the Skin.
On my Controller its the Mapping for the LED get_beat.
Whats on the Skin XML the varable for it?
 

Posted Thu 22 Aug 13 @ 4:25 pm
Something like below should do it


<button action="deck 1 sync & deck 1 get beatgrid ? on : off" >
< ... />
</button>
 

Posted Thu 22 Aug 13 @ 4:47 pm
No does not work :-(
 

Posted Fri 23 Aug 13 @ 7:41 pm
sorry you don't need the condition just

action="deck 1 sync & deck 1 get beatgrid"
 

Posted Fri 23 Aug 13 @ 8:19 pm
No, it doesn't work.Try it out on the pioneer T1 skin.
The Synk Button not blink to the Beat.
But why is this blink by other Skins without a command?
Thanks and have a Great Weekend
 

Posted Sat 24 Aug 13 @ 3:13 am
by default the command 'sync' will blink to the bass drum (not the beat pulse), It must be an issue with the skin, make sure the button has a <selected x="" y=""/> node, as that is the image that will show when the button is lit up. the above worked perfectly on my skin.

EDIT------------------------------

I though correctly... There is no selected node, add it in like this

<button action="deck 3 sync" rightclick="deck 3 sync while_pressed">
<size width="20" height="21"/>
<pos x="539" y="375"/>
<down x="+0" y="+1088"/>
<selected x="+0" y="+1088"/>
<over x="+0" y="+1088"/>
</button>
 

Posted Sat 24 Aug 13 @ 3:30 am
Ok but here is not blinkin ..
The Button is only blink when i press the sync button..
It may be that it does not work here because the buttons placed in the middle on the mixer are?
But in other skins where the Synkbuttons on the player are placed they Flash to the beat or bass drum...
 

Posted Sat 24 Aug 13 @ 3:44 am
That by this Skin the command..

Sync
-------------------------------------------------------------------
<button action="deck 3 sync" rightclick="deck 3 sync while_pressed">
<size width="24" height="25"/>
<pos x="741" y="452"/>
<down x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
<button action="deck 1 sync" rightclick="deck 1 sync while_pressed">
<size width="24" height="25"/>
<pos x="846" y="452"/>
<down x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
<button action="deck 2 sync" rightclick="deck 3 sync while_pressed">
<size width="24" height="25"/>
<pos x="1009" y="452"/>
<down x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
<button action="deck 4 sync" rightclick="deck 4 sync while_pressed">
<size width="24" height="25"/>
<pos x="1114" y="452"/>
<down x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
 

Posted Sat 24 Aug 13 @ 3:45 am
You need to add selected to the buttons

<button action="deck 3 sync" rightclick="deck 3 sync while_pressed">
<size width="24" height="25"/>
<pos x="741" y="452"/>
<down x="+0" y="+1306"/>
<selected x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
<button action="deck 1 sync" rightclick="deck 1 sync while_pressed">
<size width="24" height="25"/>
<pos x="846" y="452"/>
<down x="+0" y="+1306"/>
<selected x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
<button action="deck 2 sync" rightclick="deck 3 sync while_pressed">
<size width="24" height="25"/>
<pos x="1009" y="452"/>
<down x="+0" y="+1306"/>
<selected x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
<button action="deck 4 sync" rightclick="deck 4 sync while_pressed">
<size width="24" height="25"/>
<pos x="1114" y="452"/>
<down x="+0" y="+1306"/>
<selected x="+0" y="+1306"/>
<over x="+0" y="+1306"/>
</button>
 

Posted Sat 24 Aug 13 @ 3:58 am
Yes, cool...It works...But it is magic :-)
What does the command <selected x="+0" y="+1306"/>?
 

Posted Sat 24 Aug 13 @ 4:09 am
synthet1c wrote :
make sure the button has a <selected x="" y=""/> node, as that is the image that will show when the button is lit up


;-)
 

Posted Sat 24 Aug 13 @ 4:32 am
Ok thank you ;-)
 

Posted Sat 24 Aug 13 @ 4:59 am


(Old topics and forums are automatically closed)