Im new to skinning messenger(And new to codding XML)and i need some help. - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: Skinning (/forumdisplay.php?fid=41) +----- Thread: Im new to skinning messenger(And new to codding XML)and i need some help. (/showthread.php?tid=80253) Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-20-2007 at 06:23 AM
As the tittle says im new to skinning and new to codding. code: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. 3. Would anyone like to test my skin so far for messenger 8.5? I dont have it so im a little helpless(I have 9).Ansewered Ive attatched a slightly older version of my skin(picture only) to this attatchment.If anyone is willing to test i will add another attatchment with the skin files (Ive changend a few things since the time of that screenshot, i want to get it a little bit more finnalised before i make a newer one(werid i know)) 4. I would also like to change the backround colour of conversation windows. Thank you in advance! RE: Im new to skinning(And new to codding to)and i need some help. by John Anderton on 12-20-2007 at 06:32 AM
quote:I'm not totally sure but I think the resources in 8.5 are different so someone would need to extract them for you and send it to you so that you can edit them (as you did with 9.0) and then package them. If you read the Skinning docs, you can have different resources for different skins. Just use the restrictions for versions before adding resources which are different for 8.5 and 9.0 RE: Im new to skinning(And new to codding to)and i need some help. by mattisdada on 12-20-2007 at 06:50 AM
So ive heard. Well, does anyone have 8.5 packages that they can send to me So i can at least START to develop for them? RE: Im new to skinning(And new to codding to)and i need some help. by stuartbennett on 12-20-2007 at 07:51 AM
hey matt RE: Im new to skinning(And new to codding to)and i need some help. by Willz on 12-20-2007 at 10:33 AM
Any WLM 9.0 UIfile will only work under WLM 9.0. It is not backwards compatible nor will it be compatible with say wlm 9.5 or 10 (the next major version) RE: Im new to skinning(And new to codding to)and i need some help. by stuartbennett on 12-20-2007 at 11:04 AM
thats very true wills, in my skin i have compatability for 8.5 and 9.0 in total i noticed that 3 images had different id's in 9.0 to what they were in 8.5 but some did stay the same. if he created 2 subfolders in his skins directory 1 for 8.5 and 1 for 9.0 puts the relevant versions uifiles in the corresponding directory and creates a resgroup for each version then it should work on both. RE: Im new to skinning(And new to codding to)and i need some help. by mattisdada on 12-20-2007 at 12:22 PM
Thanks for all the great replys . RE: Im new to skinning(And new to codding to)and i need some help. by Nathan on 12-20-2007 at 12:44 PM
Oh, and to get you on your way maybe use a different editor, one with syntax highlighting! RE: Im new to skinning(And new to codding to)and i need some help. by mattisdada on 12-20-2007 at 12:47 PM I like UltraEdit(UEStudio in specific). Its great! I didnt really like Notepad++ 5 years ago. I might give it another go now though, should've changend at least a bit..... but yes, i need to have my first 2(and 4th) questions ansewered RE: Im new to skinning(And new to codding to)and i need some help. by Willz on 12-20-2007 at 12:55 PM
you cant edit the colour of a string just by itself, you need to find it in the UIFile code under the styles section and then use the foreground tag to change its colour for each and every instance (and thats if its there) RE: Im new to skinning(And new to codding to)and i need some help. by mattisdada on 12-20-2007 at 01:00 PM 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? RE: RE: Im new to skinning(And new to codding to)and i need some help. by Willz on 12-20-2007 at 01:08 PM
quote: 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. RE: Im new to skinning(And new to codding to)and i need some help. by CookieRevised on 12-20-2007 at 01:50 PM
quote: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?). RE: Im new to skinning(And new to codding to)and i need some help. by freak544 on 12-20-2007 at 04:47 PM
As people have said you will need to edit the definiton/style files like I have done for my skin RE: Im new to skinning(And new to codding to)and i need some help. by mattisdada on 12-21-2007 at 12:16 AM
Hmmm, am i in the right file? code: 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. RE: Im new to skinning(And new to codding to)and i need some help. by freak544 on 12-21-2007 at 12:25 AM 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 RE: Im new to skinning(And new to codding to)and i need some help. by mattisdada on 12-21-2007 at 12:28 AM 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? RE: Im new to skinning(And new to codding to)and i need some help. by freak544 on 12-21-2007 at 12:29 AM The ID I used is 703 RE: Im new to skinning(And new to codding to)and i need some help. by mattisdada on 12-21-2007 at 12:32 AM Thanks RE: Im new to skinning(And new to codding to)and i need some help. by freak544 on 12-21-2007 at 12:33 AM 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 RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 01:23 AM
Thanks that worked . RE: Im new to skinning messenger(And new to codding XML)and i need some help. by CookieRevised on 12-21-2007 at 02:34 AM
quote: mattisdada, I have a strong feeling that you're editing the wrong files. Do not use the files located in the "Consolidated Windows" directory to make your skin! The files in the directory "Consolidated Windows" are only there for your own convenience. To provide a quick-view to which windows are build up with which files. They are not meant to be changed. Using those files to base your skin on will make that the skin will quite possible not work properly on other people's Messenger. Especially if that Messenger is in another language. You need to edit and base your skin on the files located in the other directories. Again, the "Consolidated Windows" directory is only to be used as a reference; a quick-view, nothing else. See the very important official scripting documentation, which is a must-read for any skinner (even more than the scripting documentation is for scripting!), unless you want to do extra work and/or screw things up. (which also explains how you can add extra images if you want different images for the login screen and the toast, for example) RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 02:38 AM
Ohhh, thank you very much CookieRevised. I had a look through alot of the skinning documentation..... alot of it i didnt understand . RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-21-2007 at 08:44 AM
ok matt heres what you do open up your 947 styles file the block of code you need to edit is on lines 545 - 549 im using a text editor that shows line numbers (notepad++) quote: change it to this quote: this block controls all the text you pointed to, i use 255,255,255 as the rgb reference in the above code which will turn all that text white however you can use whatever colour you prefer in its place regarding the images at the top 701, 703 & 706 yes they are also in the toasts change these images to a colour you prefer and reference them in your skininfo file in the replace section of your resgroup, toasts are in window 921 so if you wanna use seperate version of these images in the toast edit the 921 styles file i hope this helps. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by aNILEator on 12-21-2007 at 09:21 AM
Consolidated Definitions are Fine, just not consolidated Styles. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 10:47 AM
Thanks for the great and VERY helpfull post stuartbennett!! You've helped alot with this skin! code: My version is 9 btw. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-21-2007 at 10:51 AM
your welcome matt anything to help, its just like patchou said in the skinning documentation - you can ask people for help in the forums should you need it, all we ask is that when you get some experience you help others on the things you know how to do. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 10:58 AM
Very good work.(It didnt work, see above post). RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-21-2007 at 11:21 AM
in the 9.0 version of the 947 styles file its on lines 554 - 560, code is shown below quote: and just change the foreground on line 559 to the colour of your choice, i lifted this code directly from my own skins 9.0 style file so it should work however if it doesnt let me know and ill try to help you further. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 11:28 AM
Nope didnt work..... RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-21-2007 at 12:10 PM
in your resgroup for 9.0 compatability you had listed 2 instances of the 947 styles file, because of that it didnt know which copy to use, ive fixed that but still getting no joy. quote: this 3 style files do not appear anywhere in your skins folder as a result im assuming that when it looks for this files and cant find them it causes a problem that prevents it from loading the skin properly, if you are not including these files i would suggest removing this code, if you do intend to include these files then theorectically everything should work once they have been added please note that im not 100% sure about what if any effect these 3 files have on your skin if they are or are not present. please let me know how it goes, the new skinpack is attached. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 12:12 PM
Yeah i DID have them, ive still gotta clean up my skin info. I might bring em back though. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by aNILEator on 12-21-2007 at 12:23 PM Stuart has my fix issued to you last night caused any problems with the dashboard, mine is now making the today button invisible RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-21-2007 at 12:58 PM i cannot get rid of the today button for love nor money but cannot get sharingfolders button to display at all RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 01:44 PM All of mine are there... RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-21-2007 at 02:35 PM its nothing to worry about matt, in my skin i added an options panel to allow users to say whether they wanted the word wheel at the top or the bottom, as a result of doing that its causing problems with both mine and anils dashboard buttons where buttons will go invisible when they arent supposed to. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-21-2007 at 11:11 PM Thats werid. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by aNILEator on 12-22-2007 at 12:57 AM
SERIOUSLY GET MY FREAKING NAME RIGHT!!!!!!! RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-22-2007 at 01:16 AM
Yeah theres this werid thing with the skinning engine, i have NO idea what goes wrong. But you change something, and then the skin just stops working completly, and i have to restore it. But nothing changes..... Its so werid, it has happened 3 times now. quote: RE: Im new to skinning messenger(And new to codding XML)and i need some help. by aNILEator on 12-22-2007 at 01:30 AM No it's all in the strings file yeah, take a look at how Sunny activates her options in the SkinInfo, you'll simple need your option to activate the strings replacement section in SkinInfo you shouldn't even need to touch the defs or styles for that RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-22-2007 at 01:33 AM
So put <*PlusSkin Conditions(Funny = true) *></*PlusSkin*> in SkinInfo? Had a look through sunnys..... didnt help... me.... dumb.... i am..... RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-22-2007 at 08:07 AM
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.
then you want to add a skinoptions set in each resgroup which when done should look something like this. quote: 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. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-22-2007 at 09:37 AM
DIdnt work.... but at least it didnt error... code: Is what i had RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-22-2007 at 10:05 AM
firstly get the start of each resgroup to look like this quote: 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: then repeat the quote: 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. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-22-2007 at 10:09 AM So by the <BoolVal Name="Funny">true</BoolVal> being in that group it will check if thats true? RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-22-2007 at 11:36 AM 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. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-22-2007 at 03:13 PM
Yay it worked. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-22-2007 at 04:02 PM thanks mattis i really appreciate that, it was a pleasure to help. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-23-2007 at 08:15 AM Ok, so everything is working. Now i just need some ideas for things to replace. Anyone got any ideas? RE: Im new to skinning messenger(And new to codding XML)and i need some help. by aNILEator on 12-23-2007 at 11:48 AM Everything absolutely everything MWAHAHAHAHA!!! RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-23-2007 at 11:50 AM
HIS MAD! RE: Im new to skinning messenger(And new to codding XML)and i need some help. by aNILEator on 12-23-2007 at 12:02 PM
Yeah I gave up on strings replacement, I edited the whole strings.txt then realised I gotta do each one separately in SkinInfo Beaver and Steve Skin was designed to have lots of strings changed to include the word "unfeasible" "adventure" "Beaver says" "Blame Steve" RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-23-2007 at 12:04 PM
Hahah cool as! RE: Im new to skinning messenger(And new to codding XML)and i need some help. by aNILEator on 12-23-2007 at 12:13 PM Your spelling and grammar is terrible then RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-23-2007 at 12:16 PM
Shhh, its not that bad! . Its spelt right in my officiall one. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by vaccination on 12-31-2007 at 08:08 PM
Anyone ever find a solution to mattisdada's problem with editing the colours of the strings on the logon window? RE: RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-31-2007 at 08:57 PM
quote: pretty simple vaccination heres how you do it, the string ids are listed below. quote: so now go to 947 styles file and do ctrl+f and type in 61288 the code your looking for is: quote: the foreground line wont be there but if you add that in setting your colour to whatever you desire then itll work now lets do remember my password which i string 61295 so we search for 61295 and viola quote: again as the comments indicate the foreground line was added in to do the colour, if you wanna colour the text "Windows live ID which is in the bottom left hand corner of login screen its id is 20000 and you guessed it same process as the other 2. i hope this helped vaccination any problems dont hesitate to ask me. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by vaccination on 12-31-2007 at 09:14 PM Ah, thanks! The ids is just what I needed, thanks again. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-31-2007 at 10:50 PM your welcome vaccination glad i could help. RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-31-2007 at 11:16 PM Thanks Staurat!! TGhat helped me alot!(I sorta paused my skin devolpment for a bit, i got a book on php and mysql coding for christmas... sorta distracted me ) RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 12-31-2007 at 11:47 PM
your welcome mattisdada, you see me and jason just keep playing with thing, we are very curios about what things do we also have big ideas we may not know how to do them at first but we have great fun trying to find the solutions ourselves, its great cause we keep emailing each other skin packs so if we break something we can you reload the last working skinpack from before we messed up RE: Im new to skinning messenger(And new to codding XML)and i need some help. by mattisdada on 12-31-2007 at 11:54 PM Awesome! . Your help is always apriccated RE: Im new to skinning messenger(And new to codding XML)and i need some help. by stuartbennett on 01-01-2008 at 09:54 AM your welcome mattisdada its nice to be appreciated and to get that warm fuzzy feeling inside from knowing i have helped someone. for years now ive also looked up to people like cokkierevised etc because they were helpful in areas where i couldnt be and always felt bad about not being as smart as them, now that ive exceled in an area of messenger plus i now strive to make up for years of not being able to contribute help. |