What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Skinning » [HELP] Creating A Custom Skinops Panel

[HELP] Creating A Custom Skinops Panel
Author: Message:
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: [HELP] Creating A Custom Skinops Panel
quote:
Originally posted by stuartbennett
tried that and patchou has done a poor job of trying to explain it it makes no sense what so ever just reading it it has to compare your code to itself and tell you what youve done wrong to be any use please help.
That's because there's not much to explain, I suppose a few properties could require further description but most of it is self-explanatory. Everything you can put in your code is there, for example if you want to change the font colour of a Static Control:

Example current code:
quote:
<Control xsi:type="StaticControl" Id="lblBla">
    <Position Top="35" Width="150" Left="15"/>
    <Caption>Bla bla</Caption>
</Control>

Click on 'StaticControl'
Wow, theres a diagram with a whole bunch of properties I can set for static controls and a 'Color' option available to me :o
quote:
<Control xsi:type="StaticControl" Id="lblBla">
    <Position Top="35" Width="150" Left="15"/>
    <Caption>Bla bla</Caption>
    <Color>

    </Color>

</Control>

Click 'Color' -> You'll see that it has more properties nested under that (Red, Green, Blue are probably the most important).
quote:
<Control xsi:type="StaticControl" Id="lblBla">
    <Position Top="35" Width="150" Left="15"/>
    <Caption>Bla bla</Caption>
    <Color>
        <Red></Red>
        <Green></Green>
        <Blue></Blue>

    </Color>
</Control>

Click 'Red' -> :o That's the end of the line - I no longer have a diagram, but rather some details telling me the type of value accepted (unsignedByte <-- This just means an integer from 0 to (2^8 - 1), that is 0 to 255, you don't really need to know this though as it explains the accepted value range right underneath), the minimum value accepted (0), and the maximum value accepted (255).
quote:
<Control xsi:type="StaticControl" Id="lblBla">
    <Position Top="35" Width="150" Left="15"/>
    <Caption>Bla bla</Caption>
    <Color>
        <Red>150</Red>
        <Green></Green>
        <Blue></Blue>
    </Color>
</Control>

Go back (hit the back button) and do the same for 'Green' and 'Blue' -> You'll find that they accept similar inputs as 'Red' did:
quote:
<Control xsi:type="StaticControl" Id="lblBla">
    <Position Top="35" Width="150" Left="15"/>
    <Caption>Bla bla</Caption>
    <Color>
        <Red>150</Red>
        <Green>123</Green>
        <Blue>255</Blue>
    </Color>
</Control>

This post was edited on 02-02-2008 at 01:45 PM by Volv.
02-02-2008 01:44 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-01-2008 at 08:16 PM
RE: [HELP] Creating A Custom Skinops Panel - by vikke on 02-01-2008 at 08:30 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-01-2008 at 08:46 PM
RE: [HELP] Creating A Custom Skinops Panel - by Willz on 02-02-2008 at 12:17 AM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 09:16 AM
RE: [HELP] Creating A Custom Skinops Panel - by Willz on 02-02-2008 at 09:25 AM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 09:45 AM
RE: [HELP] Creating A Custom Skinops Panel - by Willz on 02-02-2008 at 09:50 AM
RE: [HELP] Creating A Custom Skinops Panel - by vikke on 02-02-2008 at 10:09 AM
RE: RE: [HELP] Creating A Custom Skinops Panel - by Willz on 02-02-2008 at 10:14 AM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 10:25 AM
RE: [HELP] Creating A Custom Skinops Panel - by Willz on 02-02-2008 at 10:32 AM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 10:37 AM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 10:38 AM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 11:14 AM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 11:38 AM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 11:41 AM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 11:53 AM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 11:53 AM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 12:19 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 12:21 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 12:28 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 12:30 PM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 12:47 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 12:48 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 12:53 PM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 12:54 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 12:58 PM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 01:02 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 01:21 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 01:22 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 01:34 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 01:37 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 01:39 PM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 01:44 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 01:55 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 02:09 PM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 02:18 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 03:18 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 02-02-2008 at 04:19 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-02-2008 at 04:45 PM
RE: [HELP] Creating A Custom Skinops Panel - by Volv on 02-02-2008 at 05:31 PM
RE: [HELP] Creating A Custom Skinops Panel - by freak544 on 02-02-2008 at 06:06 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 06:18 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 03-02-2008 at 06:20 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 06:22 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 03-02-2008 at 06:30 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 06:36 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 03-02-2008 at 07:03 PM
RE: [HELP] Creating A Custom Skinops Panel - by Basilis on 03-02-2008 at 07:20 PM
RE: RE: [HELP] Creating A Custom Skinops Panel - by Soardra on 03-02-2008 at 07:31 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 07:28 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 07:32 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 03-02-2008 at 07:39 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 07:57 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 03-02-2008 at 08:14 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 03-02-2008 at 09:02 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 09:07 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 03-02-2008 at 09:33 PM
RE: [HELP] Creating A Custom Skinops Panel - by blessedguy on 03-02-2008 at 09:38 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 03-02-2008 at 09:48 PM
RE: [HELP] Creating A Custom Skinops Panel - by stuartbennett on 02-15-2009 at 08:08 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On