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

Pages: (7): « First « 1 2 3 [ 4 ] 5 6 7 » Last »
[HELP] Creating A Custom Skinops Panel
Author: Message:
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: [HELP] Creating A Custom Skinops Panel
I am sure that the mistake is in my SkinInfo file since I tried replacing the Interface of Evo with mine and when I opened Evo, it displayed the Option Panel perfect. Of course the options weren't working but at least I know where the problem is. Please take a look at it.

.zip File Attachment: SkinInfo.zip (1.42 KB)
This file has been downloaded 197 time(s).

This post was edited on 02-02-2008 at 01:26 PM by Basilis.
[Image: logo1nu1.png]
02-02-2008 01:22 PM
Profile PM Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
O.P. RE: [HELP] Creating A Custom Skinops Panel
try that

.zip File Attachment: SkinInfo.zip (1.44 KB)
This file has been downloaded 176 time(s).
02-02-2008 01:34 PM
Profile E-Mail PM Web Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: [HELP] Creating A Custom Skinops Panel
Ii didn't work. I had it tried it too.
[Image: logo1nu1.png]
02-02-2008 01:37 PM
Profile PM Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
O.P. RE: [HELP] Creating A Custom Skinops Panel
zip up the whole skin and ill take a look for you basilis as without seeing your directory structure  and maybe the options panel itll be difficult to fix.
02-02-2008 01:39 PM
Profile E-Mail PM Web Find Quote Report
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
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
O.P. RE: [HELP] Creating A Custom Skinops Panel
while that works on the text, it doesnt help me change the background and theres nothing in the documentation about that.
02-02-2008 01:55 PM
Profile E-Mail PM Web Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: [HELP] Creating A Custom Skinops Panel
Can it be the fact that I am using a messenger that is translated to Greek so that

<OptionInterface>
            <InterfaceDir>Options</InterfaceDir>
            <InterfaceFile>OptInterfaces.xml</InterfaceFile>
            <WindowIds>
                <WindowId Language="en-us">SkinOpt</WindowId>
               </WindowIds>
        </OptionInterface>   

is not working?

I mean the "en-us" should it be "en-gr" for example?
[Image: logo1nu1.png]
02-02-2008 02:09 PM
Profile PM Find Quote Report
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: [HELP] Creating A Custom Skinops Panel
No:
quote:
Originally posted by Skinning Docs
You'll notice that "en-us" was specified as the window's language. A Language attribute is required for every <WindowId> element and in this case, it simply means that the text in the window is displayed in English. The system allows you to create localized versions of the window but you don't have to do that if you don't want to. One <WindowId> element can be specified for each language code that you support (Messenger Plus! compares the code with the one specified in Messenger) and if no matching language can be found, the first window in the list is loaded and its language code is ignored.
02-02-2008 02:18 PM
Profile PM Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: [HELP] Creating A Custom Skinops Panel
Can you please download my attachment and see what I should add in order to make it work? As I said, I tested it on skylines and evo and it was working so there must be a difference between evo's&skylines's SkinInfoes with mine

This post was edited on 02-02-2008 at 04:13 PM by Basilis.
[Image: logo1nu1.png]
02-02-2008 03:18 PM
Profile PM Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: [HELP] Creating A Custom Skinops Panel
Try adding a picture enough big so that it covers the whole window. If the text has a clear color, then it will be displayed just perfect.
[Image: logo1nu1.png]
02-02-2008 04:19 PM
Profile PM Find Quote Report
Pages: (7): « First « 1 2 3 [ 4 ] 5 6 7 » Last »
« Next Oldest Return to Top Next Newest »


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