What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Skinning » Newbie - What Have I Done Wrong?

Newbie - What Have I Done Wrong?
Author: Message:
Bibsta
New Member
*


Posts: 3
Joined: Jan 2008
O.P. Huh?  Newbie - What Have I Done Wrong?
This is what i have in my SkinInfo.xml but the online icon does not change what have i done wrong?

<SkinInfo>
    <Information>
        <Name>PureLime</Name>
    </Information>

    <MessengerSkin>
        <ResGroup>
            <Restrictions>
                <MsgVersions>
                    <Version Major="8" Minor="5"/>
                </MsgVersions>
            </Restrictions>

            <Resources>
                <Replace>
                    <Strings>
                        <String Id="61288">GetInside</String>
                    </Strings>

                    <Graphics><Pictures>
                        <Picture Id="161">
                            <File>online.png</File>
                        </Picture>
                    </Pictures></Graphics>
                </Replace>
            </Resources>

        </ResGroup>
    </MessengerSkin>
</SkinInfo>
01-02-2008 03:21 AM
Profile E-Mail PM Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: Newbie - What Have I Done Wrong?
i have the same problem.if i find a solution.i will try to let you know
[Image: logo1nu1.png]
01-02-2008 03:50 PM
Profile PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
RE: Newbie - What Have I Done Wrong?
You can't replace these pictures in the same way as others as the status icons are part of a multi-image.


the first step is to create new pictures with ID 59000+ in this way:

code:
<Resources>
            <New>
                <Pictures>
                    <Picture Id="59000">
                        <File>online.png</File>
                       </Picture>
                    <Picture Id="59001">
                        <File>offline.png</File>
                       </Picture>
                    <Picture Id="59002">
                        <File>busy.png</File>
                       </Picture>



as ids 59000+ are unused in WLM and we can create our own icons.


and then within the style sheet for the contact list 1004 and 1009 you have to change the multi-icon to each of the individual ones depending on status to be displayed with the picture you've just created:

it involves replacing the bold line below:

code:
Element[id=atom(statuspill)]
{
Content:rcimg(46611);
}

with these multiple elements, where the content index refers to the status you desire (the order is shown in the original 46611_multi image., and the img number to the image you've created and defined in your skininfo.xml for that status

code:
}
Element[id=atom(statuspill)][ContentIndex=0]
{
    Content:rcimg(59000);
}
Element[id=atom(statuspill)][ContentIndex=1]
{
    Content:rcimg(59001);
}
Element[id=atom(statuspill)][ContentIndex=2]
{
    Content:rcimg(59002);
}
Element[id=atom(statuspill)][ContentIndex=3]
{
    Content:rcimg(59003);
}


etc

This post was edited on 01-02-2008 at 04:51 PM by djdannyp.
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5224 days, 12 hours, 50 minutes, 38 seconds ago
01-02-2008 04:43 PM
Profile E-Mail PM Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: Newbie - What Have I Done Wrong?
thanks djdannyp.i 'm going to try your tips and let you know if they worked
oh man!you are awesome.it worked perfectly.yhank you very match.i wish i could rate you but i can't do that yet.thanks again!
[Image: logo1nu1.png]
01-02-2008 05:01 PM
Profile PM Find Quote Report
Bibsta
New Member
*


Posts: 3
Joined: Jan 2008
O.P. RE: Newbie - What Have I Done Wrong?
Hi so where do i find the file that has

Element[id=atom(statuspill)]
{
Content:rcimg(46611);
}

inside??
01-03-2008 01:26 AM
Profile E-Mail PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
RE: Newbie - What Have I Done Wrong?
you should have extracted the resources of windows live messenger (via the skin page of plus preferences)

then look for the "styles" folder and then find the ones ending in 1004 and 1009

copy these into your skin directory, then find the line in those and edit them.

once you've done this you'll also need to add them into your skininfo.xml in the following way:

code:
<Resources>
<Replace>
<Windows>
<Styles>
<Style Id="1004">
<File>1004 Style.txt</File>
</Style>
<Style Id="1009">
<File>1009 Style.txt</File>
</Style>
</Styles>
</Windows>
</Replace>
</Resources>

[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5224 days, 12 hours, 50 minutes, 38 seconds ago
01-03-2008 01:44 AM
Profile E-Mail PM Find Quote Report
Bibsta
New Member
*


Posts: 3
Joined: Jan 2008
O.P. RE: Newbie - What Have I Done Wrong?
Hi sorry to get on your nerves mate but i have done what you said and i though i got everything right but when i loaded my skin nothing changed, i extracted resources and edited were you said.

- <SkinInfo>
- <Information>
  <Name>PureOrb</Name>
  </Information>
- <MessengerSkin>
- <ResGroup>
- <Restrictions>
- <MsgVersions>
  <Version Major="8" Minor="5" />
  </MsgVersions>
  </Restrictions>
- <Resources>
- <Replace>
- <Strings>
  <String Id="61288">Get Inside</String>
  </Strings>
- <New>
- <Pictures>
- <Picture Id="59000">
  <File>online.png</File>
  </Picture>
  </Pictures>
  </New>
  </Replace>
- <Replace>
- <Windows>
- <Styles>
- <Style Id="1004">
  <File>1004.txt</File>
  </Style>
- <Style Id="1009">
  <File>1009.txt</File>
  </Style>
  </Styles>
  </Windows>
  </Replace>
  </Resources>
  </ResGroup>
  </MessengerSkin>
  </SkinInfo>

Thanks for all the advice your have gave so far.
01-04-2008 02:26 AM
Profile E-Mail PM Find Quote Report
Nagamasa
Skinning Contest Winner
*****

Avatar

Posts: 1842
Reputation: 30
30 / Male / Flag
Joined: May 2006
RE: Newbie - What Have I Done Wrong?
quote:
Originally posted by Bibsta
Hi sorry to get on your nerves mate but i have done what you said and i though i got everything right but when i loaded my skin nothing changed, i extracted resources and edited were you said.

- <SkinInfo>
- <Information>
  <Name>PureOrb</Name>
  </Information>
- <MessengerSkin>
- <ResGroup>
- <Restrictions>
- <MsgVersions>
  <Version Major="8" Minor="5" />
  </MsgVersions>
  </Restrictions>
- <Resources>
- <Replace>
- <Strings>
  <String Id="61288">Get Inside</String>
  </Strings>
- <New>
- <Pictures>
- <Picture Id="59000">
  <File>online.png</File>
  </Picture>
  </Pictures>
  </New>
  </Replace>
- <Replace>
- <Windows>
- <Styles>
- <Style Id="1004">
  <File>1004.txt</File>
  </Style>
- <Style Id="1009">
  <File>1009.txt</File>
  </Style>
  </Styles>
  </Windows>
  </Replace>
  </Resources>
  </ResGroup>
  </MessengerSkin>
  </SkinInfo>

Thanks for all the advice your have gave so far.

Isn't this:

code:
- <New>
- <Pictures>
- <Picture Id="59000">
  <File>online.png</File>
  </Picture>
  </Pictures>
  </New>

outside the <Replace>?
[Image: unled1uo.png]
Joined this forum 6563 days, 15 hours, 56 minutes, 8 seconds ago.



01-04-2008 02:30 AM
Profile PM Web Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
RE: Newbie - What Have I Done Wrong?
Yeah, this block of code

code:
<New>
- <Pictures>
- <Picture Id="59000">
  <File>online.png</File>
  </Picture>
  </Pictures>
  </New>

should be moved to below a </Replace> tag, then it should work
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5224 days, 12 hours, 50 minutes, 38 seconds ago
01-04-2008 10:49 AM
Profile E-Mail PM 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