What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Skinning » Half-Blood Prince Skin [Help D: ]

Half-Blood Prince Skin [Help D: ]
Author: Message:
totalsanity
New Member
*


Posts: 4
Joined: Jul 2009
O.P. Half-Blood Prince Skin [Help D: ]
Okay so I have just made my first skin, (yay whoopie!.. okay good feeling gone) and I have some problems. I've been reading now for like an hour and I'm getting no where. This is the code I've done so far,

<SkinInfo>
   <Information>
      <Name>Half-Blood Prince</Name>
      <Description>I have taken my Harry Potter obsession to a new level!
I'm not sad, I'm just dedicated. </Description>
      <Version>1.0</Version>
      <Compatibility>
         <MsgVersion Major="8" Minor="5"/>
     </Compatibility>
   </Information>


   <MessengerSkin>
      <ResGroup>
         <Restrictions>
            <MsgVersions>
               <Version Major="8" Minor="5"/>
            </MsgVersions>
         </Restrictions>
         <Resources>
             <Replace>
                <Graphics>
                   <Pictures>
                      <Picture Id="20061">
                        <File>images/20061.png</File>
                      </Picture>
                   </Pictures>
                </Graphics>
             </Replace>
         </Resources>
     <ResGroup>
   </MessengerSkin>
</SkinInfo>

Now its not a very long code, because all I want to edit is the background of the sign in window. So far that has worked,

[Image: Untitled.jpg]
(image has been made smaller so it loads)

and I'm pretty happy with that image :D

But then when signing in, its actually changed a bunch of images. I know why I just don't know how to edit it so only the background of the sign in window is changed. 

[Image: ddd.jpg]

[Image: fdd.jpg]

[Image: ffdff.jpg]

help?

This post was edited on 07-01-2009 at 07:54 PM by totalsanity.
07-01-2009 07:42 PM
Profile E-Mail PM Find Quote Report
robert_dll
Full Member
***

Avatar

Posts: 393
Reputation: 8
– / Male / Flag
Joined: Aug 2008
RE: Half-Blood Prince Skin [Help D: ]
You need to add a new image, 59000 for example, and change 20061 to 59000 in the code of the logon window. So, you need to replace 947 (definition or style, I don't remember) file.
07-01-2009 08:08 PM
Profile PM Web Find Quote Report
totalsanity
New Member
*


Posts: 4
Joined: Jul 2009
O.P. RE: RE: Half-Blood Prince Skin [Help D: ]
quote:
Originally posted by robert_dll
You need to add a new image, 59000 for example, and change 20061 to 59000 in the code of the logon window. So, you need to replace 947 (definition or style, I don't remember) file.

Okay.. seeing as im kinda new to this would you mind telling me how to do those?
07-01-2009 08:13 PM
Profile E-Mail PM Find Quote Report
robert_dll
Full Member
***

Avatar

Posts: 393
Reputation: 8
– / Male / Flag
Joined: Aug 2008
RE: Half-Blood Prince Skin [Help D: ]
XML code:
<?xml version="1.0" encoding="UTF-8"?>
<SkinInfo>
   <Information>
      <Name>Half-Blood Prince</Name>
      <Description>I have taken my Harry Potter obsession to a new level!
I'm not sad, I'm just dedicated. </Description>
      <Version>1.0</Version>
      <Compatibility>
         <MsgVersion Major="8" Minor="5"/>
     </Compatibility>
   </Information>
 
   <MessengerSkin>
      <ResGroup>
         <Restrictions>
            <MsgVersions>
               <Version Major="8" Minor="5"/>
            </MsgVersions>
         </Restrictions>
         <Resources>
             <New>
                <Pictures>
                    <Picture Id="59000">
                        <File>images/59000.png</File>
                    </Picture>
                </Pictures>
             </New>
             <Replace>
                <Windows>
                    <Styles>
                        <Style Id="947">
                            <File>styles/msgres_4005_947.txt</File>
                        </Style>
                    </Styles>
                </Windows>
             </Replace>
         </Resources>
     </ResGroup>
   </MessengerSkin>
</SkinInfo>


Copy the style 947 to a folder named "styles". Open the file, look for:


Element[id=atom(mainwndcontainer)]
{
Background:rcbkd(20061);
}


and change it to:


Element[id=atom(mainwndcontainer)]
{
Background:rcbkd(59000);
}

This post was edited on 07-02-2009 at 05:11 PM by robert_dll.
07-01-2009 08:38 PM
Profile PM Web Find Quote Report
totalsanity
New Member
*


Posts: 4
Joined: Jul 2009
O.P. RE: RE: Half-Blood Prince Skin [Help D: ]
quote:
Originally posted by robert_dll
XML code:
<?xml version="1.0" encoding="UTF-8"?>
<SkinInfo>
   <Information>
      <Name>Half-Blood Prince</Name>
      <Description>I have taken my Harry Potter obsession to a new level!
I'm not sad, I'm just dedicated. </Description>
      <Version>1.0</Version>
      <Compatibility>
         <MsgVersion Major="8" Minor="5"/>
     </Compatibility>
   </Information>
 
   <MessengerSkin>
      <ResGroup>
         <Restrictions>
            <MsgVersions>
               <Version Major="8" Minor="5"/>
            </MsgVersions>
         </Restrictions>
         <Resources>
             <New>
                <Pictures>
                    <Picture Id="59000">
                        <File>images/59000.png</File>
                    </Picture>
                </Pictures>
             </New>
             <Replace>
                <Windows>
                    <Styles>
                        <Style Id="947">
                            <File>styles/msgres_4005_947.txt</File>
                        </Style>
                    </Styles>
                </Windows>
             </Replace>
         </Resources>
     <ResGroup>
   </MessengerSkin>
</SkinInfo>


Copy the style 947 to a folder named "styles". Open the file, look for:


Element[id=atom(mainwndcontainer)]
{
Background:rcbkd(20061);
}


and change it to:


Element[id=atom(mainwndcontainer)]
{
Background:rcbkd(59000);
}


I did that, but then the skin doesn't show up in the list of skins on Preferences/Customize!/Skins =/
07-01-2009 09:56 PM
Profile E-Mail PM Find Quote Report
robert_dll
Full Member
***

Avatar

Posts: 393
Reputation: 8
– / Male / Flag
Joined: Aug 2008
RE: Half-Blood Prince Skin [Help D: ]
Is there a trace file in the skin folder?

This post was edited on 07-01-2009 at 11:57 PM by robert_dll.
07-01-2009 11:55 PM
Profile PM Web Find Quote Report
totalsanity
New Member
*


Posts: 4
Joined: Jul 2009
O.P. RE: RE: Half-Blood Prince Skin [Help D: ]
quote:
Originally posted by robert_dll
Is there a trace file in the skin folder?

nope =/
07-02-2009 04:17 PM
Profile E-Mail PM Find Quote Report
Jeeeee
Junior Member
**


Posts: 18
45 / Male / Flag
Joined: Jun 2009
RE: Half-Blood Prince Skin [Help D: ]
Could you post you SkinInfo.xml please it's probably an error in there!
07-02-2009 05:10 PM
Profile E-Mail PM Find Quote Report
robert_dll
Full Member
***

Avatar

Posts: 393
Reputation: 8
– / Male / Flag
Joined: Aug 2008
RE: Half-Blood Prince Skin [Help D: ]
I have edited the code, now it should work.
07-02-2009 05:12 PM
Profile PM Web Find Quote Report
« 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