Im new to skinning messenger(And new to codding XML)and i need some help. |
Author: |
Message: |
mattisdada
Full Member
RRElive.com
Posts: 359 Reputation: 4
33 / /
Joined: Jan 2007
|
O.P. RE: Im new to skinning(And new to codding to)and i need some help.
Ok thanks for that, so what if i have a heavly modified login page made by someone else, that didnt have it stated? What should i do?
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-20-2007 01:00 PM |
|
|
Willz
Senior Member
Posts: 953 Reputation: 52
36 / /
Joined: Jul 2006
|
RE: RE: Im new to skinning(And new to codding to)and i need some help.
quote: Originally posted by mattisdada
Ok thanks for that, so what if i have a heavly modified login page made by someone else, that didnt have it stated? What should i do?
Well you got to talk to whoever made it then. I just hope you asked permission to use it before you started
Its not a good idea when you are starting to just use a more complex example. Its better to start fresh because then you can keep track of changes easier and know where things are and how your skin works back to front.
Also not all strings are shown in UIFile code, the majority of strings get controlled by elements to define their color and properties.
|
|
12-20-2007 01:08 PM |
|
|
CookieRevised
Elite Member
Posts: 15517 Reputation: 173
– / /
Joined: Jul 2003
Status: Away
|
RE: Im new to skinning(And new to codding to)and i need some help.
quote: Originally posted by mattisdada
2. I have the code code: <String Id="698">%1 just sent you a
nudge. I strongly recommend nudging them back for revenge!</String>
Im using %1 as thats the variable they use(in the file msglang_strings which is how you find what each string says and does) to stick in someones name on that string. But aparantly, it doesnt work like that with the skinInfo page, as when someone nudges me it says "%1" instead of the name.
IDs of string resources usually stay the same between versions. The same with this string ID, it hasn't changed since MSN Messenger 7.0.
However, be carefull with it! The string resources are language dependant. This means that if you change something in it, you overwrite the user's language. And it doesn't look good at all if you have Messenger in Spanish (for example) and suddenly see an English string popping up here and there.
The reason why placeholders like '%1' aren't parsed is unknown to me. Maybe this might be a bug in the skinning engine (or even a limitation?).
This post was edited on 12-20-2007 at 01:56 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
|
|
12-20-2007 01:50 PM |
|
|
freak544
Full Member
Posts: 245 Reputation: 2
36 / /
Joined: Dec 2007
|
RE: Im new to skinning(And new to codding to)and i need some help.
As people have said you will need to edit the definiton/style files like I have done for my skin
I had to change some of the black text to white so that they will show up
It's just a case of going through the styles and definitons to find the part you want to change
The changes I made in mine were to the 1001 definition file in which i changed the colour of the status text and the PSM aswell as the main name you use I am use someone can appoint ou to the correct file you need to change the text in the contact list window
|
|
12-20-2007 04:47 PM |
|
|
mattisdada
Full Member
RRElive.com
Posts: 359 Reputation: 4
33 / /
Joined: Jan 2007
|
O.P. RE: Im new to skinning(And new to codding to)and i need some help.
Hmmm, am i in the right file?
code: urlelem[id=atom(idForgetMeBtn)]
{
Content:"(Forget &me)";
accname:"(Forget &me)";
accdesc:"Remove my sign-in information from this computer";
shortcut:rcchar(61291);
}
Checkbox[id=atom(idRememberPasswordChk)]
{
text:"&Remember my password";
accname:"&Remember my password";
accdesc:"Remember my password on this computer";
shortcut:rcchar(61295);
accdefaction:"Press";
Margin:rect(4,3,4,3);
}
Checkbox[id=atom(idMakeDefaultUserChk)]
{
text:"Sig&n me in automatically";
accname:"Sig&n me in automatically";
accdesc:"Sign me in automatically";
shortcut:rcchar(61298);
accdefaction:"Press";
Margin:rect(4,3,4,3);
}
element[id=atom(idSignInHint)]
As these values dont have any rgb values(but some above do)
I have attatched the image of my login screen with red lines pointing to what text i need to have changend.
Attachment: Login Screen(Pointy Edition).jpg (75.41 KB)
This file has been downloaded 180 time(s).
This post was edited on 12-21-2007 at 12:18 AM by mattisdada.
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-21-2007 12:16 AM |
|
|
freak544
Full Member
Posts: 245 Reputation: 2
36 / /
Joined: Dec 2007
|
RE: Im new to skinning(And new to codding to)and i need some help.
I am also trying to work out ow to change the text colour there but the Messenger Beta is a picture as I changed it in mine
|
|
12-21-2007 12:25 AM |
|
|
mattisdada
Full Member
RRElive.com
Posts: 359 Reputation: 4
33 / /
Joined: Jan 2007
|
O.P. RE: Im new to skinning(And new to codding to)and i need some help.
I found the picture for when your not in the login screen, but so far i havent found the image for the login screen. What ID is it?
This post was edited on 12-21-2007 at 12:55 AM by mattisdada.
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-21-2007 12:28 AM |
|
|
freak544
Full Member
Posts: 245 Reputation: 2
36 / /
Joined: Dec 2007
|
RE: Im new to skinning(And new to codding to)and i need some help.
The ID I used is 703
|
|
12-21-2007 12:29 AM |
|
|
mattisdada
Full Member
RRElive.com
Posts: 359 Reputation: 4
33 / /
Joined: Jan 2007
|
O.P. RE: Im new to skinning(And new to codding to)and i need some help.
Thanks
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-21-2007 12:32 AM |
|
|
freak544
Full Member
Posts: 245 Reputation: 2
36 / /
Joined: Dec 2007
|
RE: Im new to skinning(And new to codding to)and i need some help.
Its ok no problem and if i work out how to change the rest of the text colours on that page I will let you know but I am sure someone who knows could tell you
|
|
12-21-2007 12:33 AM |
|
|
Pages: (7):
« First
«
1
[ 2 ]
3
4
5
6
»
Last »
|
|