[Help] Wrong Skin Trace errors - 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: [Help] Wrong Skin Trace errors (/showthread.php?tid=82194) [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 01:06 PM
Hi, RE: [Help] Wrong Skin Trace errors by Basilis on 03-08-2008 at 01:10 PM Are you sure the image is .png format? If it isn't, then that is what causes the error. RE: RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 01:24 PM
quote: Yep.. The error is shown just one time in the trace file, while I've used the image multiple times... RE: [Help] Wrong Skin Trace errors by Basilis on 03-08-2008 at 01:27 PM
That doesn't matter because the same image is used for all the replacements you did in your SkinInfo so it appears only one time. Have you put the image in any file in the skin's directory? RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 01:32 PM Yeah, I did.. Is that wrong? RE: [Help] Wrong Skin Trace errors by Basilis on 03-08-2008 at 01:34 PM
Then you have to write this in your SkinInfo like this RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 01:37 PM SkinLoader: Couldn't find file "Images\04.png" RE: [Help] Wrong Skin Trace errors by Basilis on 03-08-2008 at 01:39 PM Images has to be replaced by the name of the file that you have put the picture in. It was just an example of what it should look like. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 01:40 PM
RE: [Help] Wrong Skin Trace errors by Basilis on 03-08-2008 at 01:42 PM Another error I found now. You wrote Images\04.png instead of Images/04.png which is the right. You have used \ instead of /. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 02:04 PM
I wrote?? quote: RE: [Help] Wrong Skin Trace errors by Basilis on 03-08-2008 at 02:06 PM
quote:That is what you wrote. Anyway, hope I was helpful and have a nice skinning day. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 02:10 PM
Ooh, that way RE: [Help] Wrong Skin Trace errors by Soardra on 03-08-2008 at 06:01 PM
When specifying a file in a directory you always use / the only reason I've ever used \ is in smilies and such. o.o with commands you use / as well...like this command (which is the IRC code for actions) code:or when closing tags. \me runs around * * Soardra runs around * as you can see / works, but \ does not RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-08-2008 at 07:04 PM Uhm.. I think that plain English would help me better.. RE: [Help] Wrong Skin Trace errors by Soardra on 03-08-2008 at 08:16 PM
* Soardra did some more research * code: This is how it appears in a browser in the address bar: C:\Program Files\Messenger Plus! Live\My Folder\Images\blah.png I can now see that you were right in saying that the kind of slash did NOT matter. However, make sure that you're using the slash in the TAGS o-o because I'm pretty sure that DOES matter. RE: [Help] Wrong Skin Trace errors by Spunky on 03-08-2008 at 08:36 PM Usually \ is for local files and folders and / is for the internet addresses... and possibly networks (unsure though on that one) RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-09-2008 at 09:48 AM
Well, I think I know the difference between a forward- and a backslash, so I don't really understand why "/" should be used in the SkinInfo.xml (apart from <AboutUrl />, of course).. RE: [Help] Wrong Skin Trace errors by Spunky on 03-09-2008 at 12:33 PM If you using <AboutUrl/> the tag is obviously empty and so is not needed RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-09-2008 at 12:38 PM
I know, but what I meant was: RE: [Help] Wrong Skin Trace errors by Volv on 03-09-2008 at 12:43 PM You should be using '\' in SkinInfo.xml for all local file paths. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-09-2008 at 12:46 PM
Whatever RE: [Help] Wrong Skin Trace errors by Spunky on 03-09-2008 at 05:05 PM Well, it's not a path is it? It's an markup language. RE: [Help] Wrong Skin Trace errors by Matti on 03-09-2008 at 05:43 PM
To make it even worse... you should escape the backslash in your paths! code:This is because when you have an image called "nothing.png", the "Images\nothing.png" will be parsed as: quote: RE: [Help] Wrong Skin Trace errors by Spunky on 03-09-2008 at 06:02 PM I've only seen them with single slashes. Only seen doubles in scripts RE: RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-09-2008 at 06:14 PM
quote: That is called SCRIPTING.. This sub forum is called SKINNING. I have to admit that these two words look like each other, since both have an S as first character and they both end with "-ing", but please learn to read properly and see the difference between them RE: [Help] Wrong Skin Trace errors by Spunky on 03-09-2008 at 06:54 PM
quote: RE: [Help] Wrong Skin Trace errors by Soardra on 03-11-2008 at 12:49 AM
Also, scripting practices apply to skinning as well since it's basically using the same resources and such. The \n is because it's a code in strings for referring to a certain data set. code: RE: [Help] Wrong Skin Trace errors by Spunky on 03-11-2008 at 02:25 PM
quote: No, strings are processed and so \n is converted to a new line. Paths are not however, the path is read as it is, else the skin would be looking for files with the newline character in them for example RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-11-2008 at 02:29 PM And the newline charater comes back in C(+(+)) and probarbly many other programming languages.. RE: [Help] Wrong Skin Trace errors by vikke on 03-11-2008 at 02:37 PM
In Windows ALL paths should always use '\', but in Linux (or *nix) you should always use '/'. Mostly programs written/ported from Linux to Windows uses '/' though, that would include open-source projects such as Firefox (IE has this as well, because it's standard). Any decent program should support both. RE: [Help] Wrong Skin Trace errors by blessedguy on 03-16-2008 at 06:46 PM
Ok...i'm getting wrong skin traces too, but i'm sure the formats are correct (i always use png, JPG has their own folder), where should be / i used / and not \ (the problem is with a resource at the root folder though)...and etc. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-16-2008 at 07:43 PM
Attachment?? RE: [Help] Wrong Skin Trace errors by Menthix on 03-16-2008 at 07:46 PM
quote:Since when is waiting over a minute or buying a premium account preferred over a plain old forum attachment (or any other regular HTTP download) . RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-16-2008 at 07:49 PM I don't know.. But "blessedguy"'s post didn't have any attachments.. RE: [Help] Wrong Skin Trace errors by blessedguy on 03-16-2008 at 08:46 PM
ups...didnt go attached... RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-16-2008 at 09:03 PM
Well, I'll give it a try, but not today anymore.. RE: [Help] Wrong Skin Trace errors by blessedguy on 03-16-2008 at 09:10 PM no problems if it isnt today...i still have got loads of homwork to do...and ill probably finish it by the holyday...(wich, at least here, begins friday...) RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-17-2008 at 02:46 PM
Enabled your skin.. RE: [Help] Wrong Skin Trace errors by blessedguy on 03-17-2008 at 04:49 PM
have you done this without changing anything?? RE: [Help] Wrong Skin Trace errors by Matti on 03-17-2008 at 05:35 PM
quote:Hmm, okay, you may be right there. Seems like I have mixed up the escaping rules, e.g. escaping the double-quote character: in XML it's done with " and in scripting it's \" Okay, you're right. * Matti shuts his mouth. (And there's no need to treat me like I don't know anything about it... I'm not retarded... yet! ) RE: RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-17-2008 at 05:57 PM
quote: ?? Thhere's no SkinTrace.txt in the archive.. @Mattike: Thanx for saying that I'm right.. I almost started thinking that I was getting paranoïd.. RE: [Help] Wrong Skin Trace errors by blessedguy on 03-19-2008 at 09:26 PM
Ok...I quit...it hasn't really worked...even with the same file!!! RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-22-2008 at 07:20 AM
Well, here I am again code: Gives: code: What's wrong with this piece of code? RE: [Help] Wrong Skin Trace errors by blessedguy on 03-22-2008 at 12:36 PM Line 185 of your definition 920 has a mismatch...(like <element></Element>)...could you send us this file? (920 definition) RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-22-2008 at 12:41 PM
RE: [Help] Wrong Skin Trace errors by blessedguy on 03-22-2008 at 01:00 PM try replacing <*PlusSkin Conditions(ShowBuzzBtn = true) *> for <*PlusSkin Conditions(ShowBuzzBtn = true)*> RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-22-2008 at 01:48 PM
Thanx man code: Works fine... RE: [Help] Wrong Skin Trace errors by blessedguy on 03-22-2008 at 01:54 PM
quote: well...I don't know if the code up here (that you posted) works, but at least at the skinning docs it is said that you1've got to use =true)*> [without spaces] (p.s.:you're welcome! =) ) RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-22-2008 at 01:59 PM
I think I (finally) have some kind of idea what to do: code: EDIT:: Feels fine to be welcome RE: [Help] Wrong Skin Trace errors by blessedguy on 03-22-2008 at 02:05 PM
well...thats the way I've done the hole skin...(i was tired to put the same thing in tons of places at the same style or definition...) RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-22-2008 at 02:08 PM
Now, I have one problem left vefore they'll accept my skin.. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-24-2008 at 01:18 PM
Got WLM 9.0 nd a problem: code: Only to give: code: Strange? No Very strange? Yes If anyone can make sense out of this, please tell me what to do, 'caue it doesn't make any sense to me.. RE: [Help] Wrong Skin Trace errors by Basilis on 03-24-2008 at 01:21 PM In the line 123 there shouldn't be a *. But I can't tell you what line is 123 since I don't have your entire definition file. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-24-2008 at 01:41 PM
RE: [Help] Wrong Skin Trace errors by Basilis on 03-24-2008 at 01:42 PM You have to do this. If you edited the file, it may lead to another line. RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-24-2008 at 01:55 PM Ummm.. There's no attachment... RE: [Help] Wrong Skin Trace errors by Willz on 03-24-2008 at 01:57 PM plusSkin is the problem it is case sensitive it should be PlusSkin RE: RE: [Help] Wrong Skin Trace errors by SmokingCookie on 03-24-2008 at 02:03 PM
|