What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Skinning » Im new to skinning messenger(And new to codding XML)and i need some help.

Pages: (7): « First « 1 2 3 4 [ 5 ] 6 7 » Last »
1 votes - 5 average   Im new to skinning messenger(And new to codding XML)and i need some help.
Author: Message:
mattisdada
Full Member
***

Avatar
RRElive.com

Posts: 359
Reputation: 4
32 / Male / Flag
Joined: Jan 2007
O.P. RE: Im new to skinning messenger(And new to codding XML)and i need some help.
So put <*PlusSkin Conditions(Funny = true) *></*PlusSkin*> in SkinInfo?


I tried that it stuffed up.... maybe i stuffed up.. ill have another go.

EDIT: Yeah didnt work.... ill download sunny's skin and have a look at how she did it.
Had a look through sunnys..... didnt help... me.... dumb.... i am.....

This post was edited on 12-22-2007 at 01:44 AM by mattisdada.
[Image: Siggy.png]


http://www.rrelive.com/RRElivev2

If you would like my theme for your phpBB3, please contact me.

Thy shouldnt be judged by thy rep givin to you, but by thy rep that you give.
12-22-2007 01:33 AM
Profile E-Mail PM Web Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
RE: Im new to skinning messenger(And new to codding XML)and i need some help.
matt the easiest way i think of doing this is first plan your changes, go to the strings and colours folder of your messenger resources in there is a file called "msglang_strings.txt" now then go through this file writing down the id's of the strings you want to replace.

once youve done that open your skininfo file, i will assume that as your supporting 2 versions of messenger you have 2 seperate resgroups 1 for 9.0 and one for 8.5 yes?

if that is the case i need you to duplicate them so that you have 2 resgroups for 8.5 and 2 for 9.0, youll have the following groups

  • 8.5 funny false
    8.5 funny true
    9.0 funny false
    9.0 funny true

then you want to add a skinoptions set in each resgroup which when done should look something like this.

quote:
        <!-- ResGroup for 8.5 funny true-->
        <ResGroup>
            <Restrictions>
                <MsgVersions>
                    <Version Major="8" Minor="5"/>
                </MsgVersions>
                <SkinOptions>
                    <OptionSet>
                        <BoolVal Name="Funny">true</BoolVal>
                    </OptionSet>
                </SkinOptions>
            </Restrictions>
            <Resources>


now in the true groups go to your replace section, start adding string tage in there remember they must preceed any other tags in this section, you have the ids you need so key in a string for each id.

when your skin runs it will scan the resgroups if youv unticked funny it will run the funny false group for that version of messenger, if its ticked itll run the fun true group for that version which has your string replacements.

im not saying this is the only way of acheiving this or that its the best, however its the only way i know of doing this that i know will work.

let me know how this works out.
12-22-2007 08:07 AM
Profile E-Mail PM Web Find Quote Report
mattisdada
Full Member
***

Avatar
RRElive.com

Posts: 359
Reputation: 4
32 / Male / Flag
Joined: Jan 2007
O.P. RE: Im new to skinning messenger(And new to codding XML)and i need some help.
DIdnt work.... but at least it didnt error...

code:
<ResGroup>
            <Restrictions>
                <MsgVersions>
                    <Version Major="9" Minor="0"/>

                </MsgVersions>
            <SkinOptions>
<OptionSet>
<BoolVal Name="Funny">true</BoolVal>
<String Id="708">You cannot send a nudge to your contact because they're using a version of Messenger

that does not support this feature.</String>
</OptionSet>
</SkinOptions>
            </Restrictions>

Is what i had

This post was edited on 12-22-2007 at 09:58 AM by mattisdada.
[Image: Siggy.png]


http://www.rrelive.com/RRElivev2

If you would like my theme for your phpBB3, please contact me.

Thy shouldnt be judged by thy rep givin to you, but by thy rep that you give.
12-22-2007 09:37 AM
Profile E-Mail PM Web Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
RE: Im new to skinning messenger(And new to codding XML)and i need some help.
firstly get the start of each resgroup to look like this

quote:
<!-- ResGroup for 8.5 funny true-->
<ResGroup>
<Restrictions>
<MsgVersions>
<Version Major="8" Minor="5"/>
</MsgVersions>
<SkinOptions>
<OptionSet>
<BoolVal Name="Funny">true</BoolVal>
</OptionSet>
</SkinOptions>
</Restrictions>
<Resources>


using the relevant version numbers etc. after doing this in your true resgroups go to just under the <Replace> tag and put your strings tags in as shown in the example shown below.

quote:
</New>
<Replace>
<Strings>
<String id="708">You cannot send a nudge to your contact because they're using a version of Messenger that does not support this feature.
</string>
</strings>
<Windows>
Definitions>


then repeat the

quote:
<String id="708">You cannot send a nudge to your contact because they're using a version of Messenger that does not support this feature.
</string>


tags for each string you wish to add, if you have any problems let me know, i have added you to messenger and am happy to help if you get stuck.
12-22-2007 10:05 AM
Profile E-Mail PM Web Find Quote Report
mattisdada
Full Member
***

Avatar
RRElive.com

Posts: 359
Reputation: 4
32 / Male / Flag
Joined: Jan 2007
O.P. RE: Im new to skinning messenger(And new to codding XML)and i need some help.
So by the <BoolVal Name="Funny">true</BoolVal> being in that group it will check if thats true?
[Image: Siggy.png]


http://www.rrelive.com/RRElivev2

If you would like my theme for your phpBB3, please contact me.

Thy shouldnt be judged by thy rep givin to you, but by thy rep that you give.
12-22-2007 10:09 AM
Profile E-Mail PM Web Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
RE: Im new to skinning messenger(And new to codding XML)and i need some help.
yes thats correct and you do a false version in the false groups, when you run a skin it first looks at the compatability tag to see if its compatable with your messenger if it is it looks for a resgroup for your version, in your skin itll find 2 of them it then looks at the 2 the false one and true one see if youve ticked the funny tickbox if you have it runs the true resgroup if you havent it runs the false resgroup.
12-22-2007 11:36 AM
Profile E-Mail PM Web Find Quote Report
mattisdada
Full Member
***

Avatar
RRElive.com

Posts: 359
Reputation: 4
32 / Male / Flag
Joined: Jan 2007
O.P. RE: Im new to skinning messenger(And new to codding XML)and i need some help.
Yay it worked.

Thank you SOOOO much for all your fantastic help. If i do release this skin i will defintly put your name in the who did it thing.
[Image: Siggy.png]


http://www.rrelive.com/RRElivev2

If you would like my theme for your phpBB3, please contact me.

Thy shouldnt be judged by thy rep givin to you, but by thy rep that you give.
12-22-2007 03:13 PM
Profile E-Mail PM Web Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
RE: Im new to skinning messenger(And new to codding XML)and i need some help.
thanks mattis i really appreciate that, it was a pleasure to help.
12-22-2007 04:02 PM
Profile E-Mail PM Web Find Quote Report
mattisdada
Full Member
***

Avatar
RRElive.com

Posts: 359
Reputation: 4
32 / Male / Flag
Joined: Jan 2007
O.P. RE: Im new to skinning messenger(And new to codding XML)and i need some help.
Ok, so everything is working. Now i just need some ideas for things to replace. Anyone got any ideas?
[Image: Siggy.png]


http://www.rrelive.com/RRElivev2

If you would like my theme for your phpBB3, please contact me.

Thy shouldnt be judged by thy rep givin to you, but by thy rep that you give.
12-23-2007 08:15 AM
Profile E-Mail PM Web Find Quote Report
aNILEator
Skinning Contest Winner
*****

Avatar
...in the wake of the aNILEator

Posts: 3718
Reputation: 90
35 / Male / Flag
Joined: Oct 2003
Status: Away
RE: Im new to skinning messenger(And new to codding XML)and i need some help.
Everything absolutely everything MWAHAHAHAHA!!!
12-23-2007 11:48 AM
Profile PM Web 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