PDA

View Full Version : My skin version 1.1... fudge, I cant get the windowshade to work!!!


Green Guyyy
19th November 2002, 01:02
Frick and fudge!!! Well, one person said I should have a windowshade mode on my skin... so I went and labored through the x and y values again...

... AND NOW... the thing won't go to windowshade or back, it seems to be stuck on one mode.

Somebody please take a look and help me! Thank you!

http://www.boomspeed.com/greenguyyy/pleasantmemoriesnaru1-1.wal

DirtyLowMoFo
19th November 2002, 01:17
for it to be able to switch from shade back to normal the button that you use needs a param="normal" tag. I would move the button you have from the "player.normal" group and add it to your layout instead
something like...
------------------------------------------------------------------

<layout id="normal" background="player.normal.background" droptarget="pldr">
<group id="player.normal" />
<button
id="Winshade"
action="SWITCH" param="shade"
x="32" y="121"
image="player.button.winshade"
downImage="player.button.winshade.down"
tooltip="Windowshade Mode (Mini-mode!)"
/>
</layout>
------------------------------------------------------------------

then add a button to your shade Layout in the same way..

-------------------------------------------------------------------

<layout id="normal" background="player.normal.background" droptarget="pldr">
<group id="player.normal" />
<button
id="Winshade"
action="SWITCH" param="normal"
x="32" y="121"
image="player.button.winshade"
downImage="player.button.winshade.down"
tooltip="Windowshade Mode (Main-mode!)"
/>
</layout>
------------------------------------------------------------------

The Rhino
19th November 2002, 21:19
ss?