OK this is what i copied from a skin when I had someone do it for me on the default 8.0 skin...
Will this work??
<group name="clock" x="190" y="8">
<!-- <visual>
<pos x="+0" y="+0"/>
<size width="56" height="22"/>
<off x="371" y="1481"/>
</visual> -->
<textzone>
<pos x="+1" y="+1"/>
<size width="100" height="30"/>
<tooltip>CLOCK\n Click to toggle between 24hour clock and am/pm</tooltip>
<text size="30" color="#aaaaaa" weight="bold" align="left" format="%hour12"/>
<text2 size="30" color="#aaaaaa" weight="bold" align="left" format="%fullhour"/>
<text3 size="30" color="#aaaaaa" weight="bold" align="left" format="%counter"/>
</textzone>
</group>
Will this work??
<group name="clock" x="190" y="8">
<!-- <visual>
<pos x="+0" y="+0"/>
<size width="56" height="22"/>
<off x="371" y="1481"/>
</visual> -->
<textzone>
<pos x="+1" y="+1"/>
<size width="100" height="30"/>
<tooltip>CLOCK\n Click to toggle between 24hour clock and am/pm</tooltip>
<text size="30" color="#aaaaaa" weight="bold" align="left" format="%hour12"/>
<text2 size="30" color="#aaaaaa" weight="bold" align="left" format="%fullhour"/>
<text3 size="30" color="#aaaaaa" weight="bold" align="left" format="%counter"/>
</textzone>
</group>
Mensajes Sun 30 Oct 16 @ 7:40 pm
OK ...
I managed to get the clock bigger and make the rings on the skin blink when song is ending.
If anyone can help me on changing the default 4 deck skin to black and changing FILTER to FX and HEADPHON to PHONES and a visual on the screen to know whether vinyl mode was on and slip mode was on.. like a dot and VINYL under it for example.
Thanks!!
I managed to get the clock bigger and make the rings on the skin blink when song is ending.
If anyone can help me on changing the default 4 deck skin to black and changing FILTER to FX and HEADPHON to PHONES and a visual on the screen to know whether vinyl mode was on and slip mode was on.. like a dot and VINYL under it for example.
Thanks!!
Mensajes Sun 30 Oct 16 @ 9:00 pm
headphone is on line 6227
filter to fx I don't understand, you want to just change the text?
change to black, I think that is just the background at the top of the png file
dot I'm not sure
filter to fx I don't understand, you want to just change the text?
change to black, I think that is just the background at the top of the png file
dot I'm not sure
Mensajes Sun 30 Oct 16 @ 9:26 pm
Yes, just change text.
Since I have the SZ it is used for filter and other effects.
Since I have the SZ it is used for filter and other effects.
Mensajes Sun 30 Oct 16 @ 9:34 pm
This controls the filter text,
<textzone><text action="filter_label"/></textzone>
check the how headphone is formatted and do similar.
<textzone><text action="filter_label"/></textzone>
check the how headphone is formatted and do similar.
Mensajes Sun 30 Oct 16 @ 9:43 pm
What am I changing?
Also in TextEdit on Mac, how do you find the line???
Also in TextEdit on Mac, how do you find the line???
Mensajes Sun 30 Oct 16 @ 9:54 pm
It's up you to figure it out,
you've been told which bit is currently, the formatting for headphone is similar to what you want
As for display line numbers, I don't know, have you tried "google"
http://uk.lmgtfy.com/?q=textedit+line+numbers
you've been told which bit is currently, the formatting for headphone is similar to what you want
As for display line numbers, I don't know, have you tried "google"
http://uk.lmgtfy.com/?q=textedit+line+numbers
Mensajes Sun 30 Oct 16 @ 10:21 pm
I changed HEADPHONES to PHONES and I'm still getting the error again.
Mensajes Sun 30 Oct 16 @ 10:51 pm
This is what I get for line 6227
</button>
</button>
Mensajes Sun 30 Oct 16 @ 10:56 pm
headphone is found in only 2 sections of the 4 deck xml, the one you want isn't on the master panel.
you know that
text="headphone"
search for that
you know that
text="headphone"
search for that
Mensajes Mon 31 Oct 16 @ 12:39 am
Like I said, I tried that and I am getting an error.
Mensajes Mon 31 Oct 16 @ 2:19 am
I am getting impossible to open skin.
Mensajes Mon 31 Oct 16 @ 2:24 am
Your zip folder tree should look like this
*.zip
>>files
if you've gone like this you get the error
*.zip
>>folder
>>>>files
*.zip
>>files
if you've gone like this you get the error
*.zip
>>folder
>>>>files
Mensajes Mon 31 Oct 16 @ 3:57 am
So how do I avoid the folder. I have the folder on one of them and it works. Can you log in to my computer and see what I'm doing wrong?
Mensajes Mon 31 Oct 16 @ 11:52 am
The error you are getting means that your xml file is not parsing properly, so there is a XML syntax mistake.
Use a XML Editor or Notepad++ (Google it) to help you spot the error.
e.g. could be a tag that doesnt close properly
Use a XML Editor or Notepad++ (Google it) to help you spot the error.
e.g. could be a tag that doesnt close properly
Mensajes Mon 31 Oct 16 @ 8:55 pm
I was zipping the entire folder rather than just what was in the folder.
As far as changing HEADPHON to PHONES I tried on my Mac and got the error regardless. I tried doing it on a pc and it worked when i changed HEADPHON to PHONES. Not sure why it says HEADPHON on the actual skin when it actually says HEADPHONES in the script.
I am still trying to figure out making the default skin black and a visual on the screen to know whether vinyl mode was on and slip mode was on.. like a dot and VINYL under it for example
Instead of saying filter on each channel on the main panel to say FX.
I tried changing filter to FX with no luck.
As far as changing HEADPHON to PHONES I tried on my Mac and got the error regardless. I tried doing it on a pc and it worked when i changed HEADPHON to PHONES. Not sure why it says HEADPHON on the actual skin when it actually says HEADPHONES in the script.
I am still trying to figure out making the default skin black and a visual on the screen to know whether vinyl mode was on and slip mode was on.. like a dot and VINYL under it for example
Instead of saying filter on each channel on the main panel to say FX.
I tried changing filter to FX with no luck.
Mensajes Mon 31 Oct 16 @ 9:10 pm
TextEdit on Mac has been known to break XML - I've seen it change the quotes, so that instead of "" it has “”.
You can see it here:
Look at the quotes around the size="20" - they aren't correct.
<text size=“20” color="##00ff00" align="center" weight="bold" action="get_clock 24"/>
Should be:
<text size="20" color="##00ff00" align="center" weight="bold" action="get_clock 24"/>
Use a different editor as suggested above, or be extremely careful :)
You can see it here:
DJ Koz wrote :
<text size=“20” color="##00ff00" align="center" weight="bold" action="get_clock 24"/>
Look at the quotes around the size="20" - they aren't correct.
<text size=“20” color="##00ff00" align="center" weight="bold" action="get_clock 24"/>
Should be:
<text size="20" color="##00ff00" align="center" weight="bold" action="get_clock 24"/>
Use a different editor as suggested above, or be extremely careful :)
Mensajes Tue 01 Nov 16 @ 6:14 pm
Thanks SBDJ.
I was wondering what the problem was.
It could have avoided this whole thread if i didn't use TextEdit.
As far as the skin itself, I am trying to make it all black and would like a way visually (i know the dot is there... but i have to stare at it to see if it's on or off) for VINYL and SLIP.
I was wondering what the problem was.
It could have avoided this whole thread if i didn't use TextEdit.
As far as the skin itself, I am trying to make it all black and would like a way visually (i know the dot is there... but i have to stare at it to see if it's on or off) for VINYL and SLIP.
Mensajes Tue 01 Nov 16 @ 6:29 pm
Also wondering why there is no VU meter for Master on the Default Mac skin.
Mensajes Tue 01 Nov 16 @ 6:31 pm
There will be, but your controller doesn't use master, therefore you don't need it.
Mensajes Tue 01 Nov 16 @ 6:52 pm