Bonjour à tous !
J'utilise présentement la skin "VirtualDJ 7 (4 decks Swap HD) 1920x1080". Dans la section des "cues" je clique sur le chiffre de mes cues pour passer d'un mode "temps" à un mode "beat". À chaque ouverture, je dois faire ça ! Ça fonctionne lorsque je suis en 4 decks. Si j'utilise le skin avec l'option 2 decks, ça ne fonctionne pas (changer l'affichage de mon Cue de temps à beat).
Ma question est, est-ce simple de faire la moification pour que le mode d'affichage soit à "beat" par défaut ? Est-ce que j'ai besoin d'apprendre à créer un skin ?
Merci !
In english (I try to do my best)
I use "VirtualDJ 7 (4 decks Swap HD) 1920x1080" skin. In the "cues" section, I can change value of my cue (duration, beat count...) if I clic on it. I need to do this each time I turn on VDJ.
Is there a way to fix it at "beat" as default valuer ? Do I need to program skin ?
Thanks !
J'utilise présentement la skin "VirtualDJ 7 (4 decks Swap HD) 1920x1080". Dans la section des "cues" je clique sur le chiffre de mes cues pour passer d'un mode "temps" à un mode "beat". À chaque ouverture, je dois faire ça ! Ça fonctionne lorsque je suis en 4 decks. Si j'utilise le skin avec l'option 2 decks, ça ne fonctionne pas (changer l'affichage de mon Cue de temps à beat).
Ma question est, est-ce simple de faire la moification pour que le mode d'affichage soit à "beat" par défaut ? Est-ce que j'ai besoin d'apprendre à créer un skin ?
Merci !
In english (I try to do my best)
I use "VirtualDJ 7 (4 decks Swap HD) 1920x1080" skin. In the "cues" section, I can change value of my cue (duration, beat count...) if I clic on it. I need to do this each time I turn on VDJ.
Is there a way to fix it at "beat" as default valuer ? Do I need to program skin ?
Thanks !
Inviato Thu 01 Aug 13 @ 3:14 pm
Textzones with multiple text# are not saved across sesssions. If you need to change the default order, you will need to edit eh xml file of the skin and change the text# (order) of the cue textzones
Open the xml file and search for Bfromcue. For example in the 1920x1080 you will find 32 <textzone> elements that look like this..
<textzone pannel="leftdeck1" deck="1" rightclick="deck 1 cue_name 1">
<tooltip>Rightclick to edit cue name</tooltip>
<pos x="218" y="428"/>
<size width="52" height="18"/>
<text3 font="arial" size="16" color="white" align="right" format="%Pnamecue1" scroll="no"/>
<text2 font="arial" size="16" color="white" align="right" format="%Pcue1" scroll="no"/>
<text font="arial" size="16" color="white" align="right" format="%Pfromcue1" scroll="no"/>
<text4 font="arial" size="16" color="white" align="right" format="%Bfromcue1" scroll="no"/>
</textzone>
If you want to show the Beats from Cue Point, you will have to change it like this..
<textzone pannel="leftdeck1" deck="1" rightclick="deck 1 cue_name 1">
<tooltip>Rightclick to edit cue name</tooltip>
<pos x="218" y="428"/>
<size width="52" height="18"/>
<text3 font="arial" size="16" color="white" align="right" format="%Pnamecue1" scroll="no"/>
<text2 font="arial" size="16" color="white" align="right" format="%Pcue1" scroll="no"/>
<text4 font="arial" size="16" color="white" align="right" format="%Pfromcue1" scroll="no"/>
<text font="arial" size="16" color="white" align="right" format="%Bfromcue1" scroll="no"/>
</textzone>
Open the xml file and search for Bfromcue. For example in the 1920x1080 you will find 32 <textzone> elements that look like this..
<textzone pannel="leftdeck1" deck="1" rightclick="deck 1 cue_name 1">
<tooltip>Rightclick to edit cue name</tooltip>
<pos x="218" y="428"/>
<size width="52" height="18"/>
<text3 font="arial" size="16" color="white" align="right" format="%Pnamecue1" scroll="no"/>
<text2 font="arial" size="16" color="white" align="right" format="%Pcue1" scroll="no"/>
<text font="arial" size="16" color="white" align="right" format="%Pfromcue1" scroll="no"/>
<text4 font="arial" size="16" color="white" align="right" format="%Bfromcue1" scroll="no"/>
</textzone>
If you want to show the Beats from Cue Point, you will have to change it like this..
<textzone pannel="leftdeck1" deck="1" rightclick="deck 1 cue_name 1">
<tooltip>Rightclick to edit cue name</tooltip>
<pos x="218" y="428"/>
<size width="52" height="18"/>
<text3 font="arial" size="16" color="white" align="right" format="%Pnamecue1" scroll="no"/>
<text2 font="arial" size="16" color="white" align="right" format="%Pcue1" scroll="no"/>
<text4 font="arial" size="16" color="white" align="right" format="%Pfromcue1" scroll="no"/>
<text font="arial" size="16" color="white" align="right" format="%Bfromcue1" scroll="no"/>
</textzone>
Inviato Thu 01 Aug 13 @ 6:00 pm
Wow !! Thanks a lot my friend !!!
I really appreciate !! Just did it and it's perfect !
I really appreciate !! Just did it and it's perfect !
Inviato Thu 08 Aug 13 @ 12:27 pm