Is there a "Key Changer" button on any of the Dennyo panes. I've looked, can't find one, maybe missing it. If not, I hope you can add this feature Denny.
Thank you.
Thank you.
geposted Sun 25 Jan 15 @ 12:03 am
invite me please so i can download that skin thank you . . .
geposted Sun 25 Jan 15 @ 2:17 am
ProfLee wrote :
Is there a "Key Changer" button on any of the Dennyo panes. I've looked, can't find one, maybe missing it. If not, I hope you can add this feature Denny.
Thank you.
Thank you.
you can change the filter button to the key button from the skin setup
geposted Sun 25 Jan 15 @ 2:43 am
what is the scripting code for having key knobs instead of filter knobs?(oninit command)
thank you
thank you
geposted Sun 25 Jan 15 @ 5:25 pm
See here http://www.virtualdj.com/forums/191689/addons/Controller_by_DennYo.html?page=1
Search the page for Attention no Global Variable and you'll find it.
It's the 11th post (I wish there was a way to link straight to a post)
Search the page for Attention no Global Variable and you'll find it.
It's the 11th post (I wish there was a way to link straight to a post)
geposted Sun 25 Jan 15 @ 5:58 pm
thanks, but I tried " set '$filter' 1 " and it only works on deck 1
all other 3 decks show filter knob...
all other 3 decks show filter knob...
geposted Tue 27 Jan 15 @ 6:37 am
The menu in the skin does it like this:
deck 1 set 'filter' 1 & deck 2 set 'filter' 1 & deck 3 set 'filter' 1 & deck 4 set 'filter' 1
deck 1 set 'filter' 1 & deck 2 set 'filter' 1 & deck 3 set 'filter' 1 & deck 4 set 'filter' 1
geposted Tue 27 Jan 15 @ 12:20 pm
romeodan wrote :
you can change the filter button to the key button from the skin setup
ProfLee wrote :
Is there a "Key Changer" button on any of the Dennyo panes. I've looked, can't find one, maybe missing it. If not, I hope you can add this feature Denny.
Thank you.
Thank you.
you can change the filter button to the key button from the skin setup
RomeDan- Thank you very much. I had a feeling it was there somewhere.
geposted Wed 28 Jan 15 @ 12:38 am
New Update 4.1.3 is available
New in this version is autosave your Settings. The Oninit Action can be delete :)
work an an new Update soon :)
New in this version is autosave your Settings. The Oninit Action can be delete :)
work an an new Update soon :)
geposted Sat 31 Jan 15 @ 6:21 am
I like your skin very much and it's nice to see that you always want to go for perfection. Thank you for all your work, time and effort!
geposted Mon 02 Feb 15 @ 2:23 am
I'm trying to find a possibility to have your skin on three seperate screens on my controller so I don't have a large laptop in my face the whole evening and guests can't see me because I'm very small.
At this moment I am trying software that take pieces of the desktop and mirror them to an extra display.
It's not exactly wonderfull, because the resolution becomes a problem with some settings.
What is my chance that you help me to edit your skin into a multi screen setup as showed in the topic I made:
http://www.virtualdj.com/forums/197855/General_Discussion/Upgrade_your_controller_with_LCD_screens.html
Greets Roy
At this moment I am trying software that take pieces of the desktop and mirror them to an extra display.
It's not exactly wonderfull, because the resolution becomes a problem with some settings.
What is my chance that you help me to edit your skin into a multi screen setup as showed in the topic I made:
http://www.virtualdj.com/forums/197855/General_Discussion/Upgrade_your_controller_with_LCD_screens.html
Greets Roy
geposted Tue 03 Feb 15 @ 3:08 pm
Denny F. wrote :
work an an new Update soon :)
work an an new Update soon :)
what are you cooking??
geposted Sun 08 Feb 15 @ 5:09 pm
Hey guys dose anyone know how to keep the time on regular time instead of 24 hour time on start up using this skin thank u?
geposted Wed 11 Feb 15 @ 3:31 pm
You have to modify the Skin XML for that.
geposted Wed 11 Feb 15 @ 5:17 pm
How do i go about doing that?
geposted Thu 12 Feb 15 @ 9:07 pm
Can't test it at them moment to give you a 100% tutorial, but the following steps are basically the same for all skins:
Go to your VirtualDJ/Skins folder, un-zip the controller by dennyo skin zip file.
You now should see a file called 2 Decks.xml.
Open this file with an editor like notepad++ or any other text editor.
Search for "fullhour" in the text file.
You should fine something like this:
At the end of this lines you'll fine %fullhour and %hour12.
Just change this two values that it looks like this:
Save the skin.xml file, and Zip all files.
Put the Zip back into VirtualDJ/Skins folder.
Go to your VirtualDJ/Skins folder, un-zip the controller by dennyo skin zip file.
You now should see a file called 2 Decks.xml.
Open this file with an editor like notepad++ or any other text editor.
Search for "fullhour" in the text file.
You should fine something like this:
<text font="arial" size="15" align="center" weight="bold" color="#E6C371" format="%fullhour"/>
<text2 font="arial" size="15" align="center" weight="bold" color="#E6C371" format="%hour12"/>
At the end of this lines you'll fine %fullhour and %hour12.
Just change this two values that it looks like this:
<text font="arial" size="15" align="center" weight="bold" color="#E6C371" format="%hour12"/>
<text2 font="arial" size="15" align="center" weight="bold" color="#E6C371" format="%fullhour"/>
Save the skin.xml file, and Zip all files.
Put the Zip back into VirtualDJ/Skins folder.
geposted Fri 13 Feb 15 @ 5:03 am
In this case, the Dennyo skin has many XML files - one for each skin variation.
You will either need to decide which one you use most, or modify the code in every XML.
Basically, the <text line is the one that shows by default, and the <text2, <text3 etc. are the ones that it changes to when clicked - so if you only ever want 12 hour time, you could just delete the other lines and leave the hour12 one. Alternatively you could change all of them to hour12. :-)
By the way, you can also "comment out" code by using <!-- and --> at the start and end of the code you don't need.
<some>
<code>
<here>
Becomes:
<!-- <some>
<code>
<here> -->
You will either need to decide which one you use most, or modify the code in every XML.
Basically, the <text line is the one that shows by default, and the <text2, <text3 etc. are the ones that it changes to when clicked - so if you only ever want 12 hour time, you could just delete the other lines and leave the hour12 one. Alternatively you could change all of them to hour12. :-)
By the way, you can also "comment out" code by using <!-- and --> at the start and end of the code you don't need.
<some>
<code>
<here>
Becomes:
<!-- <some>
<code>
<here> -->
geposted Fri 13 Feb 15 @ 5:12 am
Thanks Guys For The Help!!!
geposted Mon 16 Feb 15 @ 8:22 am
Success?
geposted Mon 16 Feb 15 @ 8:51 am
Just a suggestion after a discussion with groovindj, could the Comment field be added to the player windows under the Title and Artist. Maybe an option switch to enable/disable.
I think this would be a useful addition instead of having the INFO side window open to see the Comments.
Cheers.
Les
I think this would be a useful addition instead of having the INFO side window open to see the Comments.
Cheers.
Les
geposted Thu 19 Feb 15 @ 6:25 am