Comment #2 Tuesday, June 24, 2003 1:22 AM
so far the "bugs" u mentioned ve not creeped in...
[bug]
if the playlist & EQ are off & the video view is turned on it still comes out as if PL & EQ r on..
[/bug]
Comment #3 Tuesday, June 24, 2003 9:13 AM
Comment #4 Tuesday, June 24, 2003 11:38 AM
I've had that problem in the past...the only cure I could find was to design skins with the buttons below or above the meta data, never next to it.
Comment #5 Tuesday, June 24, 2003 12:45 PM
Comment #6 Tuesday, June 24, 2003 5:51 PM
Comment #7 Wednesday, June 25, 2003 8:20 AM
(insted of the greater than & less than signs i will use " [ " &" ] " signs, coz the commenting code of wincusto removes those signs)
for the buttons : u seem to ve used the buttongroup method for the buttons... use the button method (the buttongroup method gives the problems J the Pirate mentioned).. ie create subviews for the buttons & place the buttons inside the subview.
CODE :
[subview id=someID left=value top=value width=value height=value]
[MINIMIZEBUTTON id=someID left=value top=value width=value height=value image=img.ext hoverimage=img.ext /]
[RETURNBUTTON id=someID left=value top=value width=value height=value image=img.ext hoverimage=img.ext /]
[CLOSEBUTTON id=someID left=value top=value width=value height=value image=img.ext hoverimage=img.ext /]
[/subview]
for the video view : in the jscript create booleen variables for each view (for EQ, PL & Video) that sotre wether the views are on/off & depending on these variables the video view can be opened right below the main skin or below the EQ & PL.
i will just show u the code u can use for the video view...
CODE :
var EQon = false;
var PLon = false;
function VidView() [
if (EQon || PLon) [videoviewID.visible=true; videoviewID.top=(mainskin.height + EQ or PL height); ]
else [videoviewID.visible=true; videoviewID.top=mainskin.height;]
]
in this case whenver u turn EQ & PL on change the value of the above variables to TRUE...
go explore...
Comment #10 Saturday, July 12, 2003 11:56 PM
I really like Mud. And Ice. Maybe a dash of another style
Nice skin!
Comment #12 Friday, July 25, 2003 11:02 AM
Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading files.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!
Comment #1 Monday, June 23, 2003 3:50 PM