|
|
#2 |
|
Major Dude
Join Date: Jul 2003
Location: UK
Posts: 1,316
|
nice
|
|
|
|
|
|
#3 |
|
Senior Member
Join Date: Feb 2006
Location: Alberta, Canada
Posts: 104
|
Looks cool. I think it would look better if you could change the color of the screen so its more like an ipod. Have white screen for black ipod or something.
|
|
|
|
|
|
#5 |
|
Major Dude
Join Date: Jan 2003
Location: Washington State
Posts: 1,132
|
nice simple but effective skin!!
|
|
|
|
|
|
#7 |
|
Piffle Producer
Join Date: May 2006
Location: the secret files of my pc
Posts: 2,589
|
Great job! One of the few skins that I can customize just so for my desktop. Lot of thought put into it.
|
|
|
|
|
|
#8 |
|
Major Dude
Join Date: Jul 2003
Location: UK
Posts: 1,316
|
some nice features hammerhead
![]() you might want to disable base opacity when dta off, otherwise its possible to make it vanish also base brightness shows black base on the bottom and corners (no regions?) more noticeable on night mode night/day mode tooltips for both same text no track info/jump to on songticker stickmode no jump to on songticker mainmode songticker display text in cfg window when toggling between day, night modes text box changes colour but text doesnt, so it can be invisible depending on which mode text is entered |
|
|
|
|
|
#10 |
|
Junior Member
Join Date: Sep 2006
Posts: 1
|
shoutcast radio info
thanx for the work, the skin is one of my favorite.
But i've no info when im listenning webradio with this skin ... Songsticker work with my own mp3 and your skin, with webradio with other skin ... but not with yours. someonelse have this troubleshooting ? |
|
|
|
|
|
#12 |
|
Junior Member
Join Date: Oct 2006
Posts: 1
|
Hey, love the skin, but is there any way to prevent the popup notifications from occurring each time a new song starts? I already have an extension for Firefox that does it for me.
|
|
|
|
|
|
#13 |
|
Major Dude
Join Date: Jul 2003
Location: UK
Posts: 1,316
|
there is ability on most skins to turn off the notifier and really the notifier imo should come from within winamp if the skin supports it rather than an external plugin that has nothing to do with the media application(not counting winamp plugins tho for example) such as your firefox one
most skinners dont offer support to turn off individual notifications for each state, its more of a all or nothing, that should be accepted and also often has been made to be inkeeping with the skin gui |
|
|
|
|
|
#14 | |
|
The Shark
(Forum King) |
Quote:
|
|
|
|
|
|
|
#15 |
|
Junior Member
Join Date: Dec 2006
Location: NYC
Posts: 2
|
Really great skin, looks awesome, fonts in the display real smooth lookin. I get an error that crashes winamp that mentions 'cover.maki' when I try and listen to a shoutcast station. I switched off 'display album art', thinking that was the problem, but the error still occurs. Any thoughts on that? Thanks!
|
|
|
|
|
|
#16 | |
|
The Shark
(Forum King) |
Quote:
![]() /edit: ok, i've updated it, get it through the update window. |
|
|
|
|
|
|
#17 |
|
Junior Member
Join Date: Dec 2006
Location: NYC
Posts: 2
|
wow thanks, works great now
|
|
|
|
|
|
#18 |
|
Senior Member
Join Date: Nov 2002
Posts: 235
|
Hey Hammer, that really looks sweet. It looks like time has created a lot of good skills.....
|
|
|
|
|
|
#20 |
|
Senior Member
Join Date: Nov 2002
Posts: 235
|
Yeah but not at the winamp scene. Been doing some stuff on the PSP scene...
Got tricked by nao neo again.. Don't think he's around here much is he.. |
|
|
|
|
|
#22 |
|
Senior Member
Join Date: Nov 2002
Posts: 235
|
remember sakura rebirth....
|
|
|
|
|
|
#24 |
|
Senior Member
Join Date: Nov 2002
Posts: 235
|
He was also creator of a project called PSIX. Also abandoned that. I think the guy is a nice designer but verry lame.
|
|
|
|
|
|
#25 |
|
Junior Member
Join Date: Aug 2002
Posts: 4
|
Really nice skin
![]() Does anyone know if I can add other ID3 fields to the two-layer display by editing the XMLs? The presets only have a limited combination to choose from. Thanks in advance! |
|
|
|
|
|
#26 |
|
The Shark
(Forum King) |
Nope, unfortunately you can't add presets through xml, you're going to have to edit a script..
Go to line 200-ish of global.m, and you should find: if (c == "a") c = GetMetaData("ARTIST"); else if (c == "n") c = GetMetaData("TITLE"); else if (c == "l") c = GetMetaData("ALBUM"); else if (c == "y") c = GetMetaData("YEAR"); else if (c == "d") c = duration; else if (c == "b") c = BitrateText.GetText(); else if (c == "s") c = SampleRateText.GetText(); else if (c == "c") c = GetChannel(InfoLine.GetText()); you can add stuff to the bottom of this if you know how.. then recompile CmTicker.m and you should be good to go. |
|
|
|
|
|
#27 |
|
Junior Member
Join Date: Aug 2002
Posts: 4
|
Hi Hammerhead,
Many thanks for the info. I've added "else if (c == "m") c = GetMetaData("COMMENT");" to the list, but having never dabbled in Winamp skinmaking, I'm not sure how I recompile "CmTicker.m" Sorry to be a painful newbie
|
|
|
|
|
|
#28 |
|
The Shark
(Forum King) |
you need to use mc.exe, probably found in the root winamp directory. also you need to make sure the reference files (ie std.mi etc) are in place. sounds complicated, so i compiled it for you:
edit: wait there's more.. sorry about that. turns out you need to edit attrtext.m too: txt.OnLeftButtonUp(int x, int y) { PopupMenu p = new PopupMenu; p.AddCommand("a - n", 1, 0, 0); p.AddCommand("a - n - l", 2, 0, 0); p.AddCommand("a - l", 3, 0, 0); p.AddCommand("a", 4, 0, 0); p.AddCommand("n", 5, 0, 0); p.AddCommand("n - l", 6, 0, 0); p.AddCommand("n - y - d", 7, 0, 0); p.AddCommand("n - d", 8, 0, 0); p.AddCommand("(l, y, d)", 9, 0, 0); p.AddCommand("(l, d)", 10, 0, 0); int i = p.PopAtMouse(); if (attr != null) { if (i == 1) attr.SetData("a - n"); if (i == 2) attr.SetData("a - n - l"); if (i == 3) attr.SetData("a - l"); if (i == 4) attr.SetData("a"); if (i == 5) attr.SetData("n"); if (i == 6) attr.SetData("n - l"); if (i == 7) attr.SetData("n - y - d"); if (i == 8) attr.SetData("n - d"); if (i == 9) attr.SetData("(l, y, d)"); if (i == 10) attr.SetData("(l, d)"); txt.SetText(attr.GetData()); } } add the preset you want to both blocks of code and then try and compile, making sure std.mi is in the folder of the script. |
|
|
|
|
|
#29 |
|
Junior Member
Join Date: Aug 2002
Posts: 4
|
Sweet
![]() Also had to recompile AttrText.m to make it work, but comment tag is now a choice in the context menus. Thanks again! |
|
|
|
![]() |
|
|||||||
| Thread Tools | Search this Thread |
| Display Modes | |
|
|