What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Skinning » [suggestion] dynamic skin

Pages: (2): « First [ 1 ] 2 » Last »
[suggestion] dynamic skin
Author: Message:
Jarrod
Veteran Member
*****

Avatar
woot simpson

Posts: 1304
Reputation: 20
– / Male / Flag
Joined: Sep 2006
O.P. [suggestion] dynamic skin
i've been thinking there are some skin requests for some rather random things, i think might be a project for a scripting/skinning team but a script that changes elements in the skin based on user input, for example colours backgrounds and pictures

[Image: 5344.png]
[Image: sig.png]

A.k.a. The Glad Falconer














09-14-2008 10:41 AM
Profile E-Mail PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: [suggestion] dynamic skin
I'm sure somebody could make a script that could edit OpenLive ;) It would be able to change colours and all the images etc.
<Eljay> "Problems encountered: shit blew up" :zippy:
09-14-2008 12:05 PM
Profile PM 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: [suggestion] dynamic skin
quote:
Originally posted by SpunkyLoveMuff
I'm sure somebody could make a script that could edit OpenLive (Smilie) It would be able to change colours and all the images etc.
This is why some people want Plus Bundles, scripts that can effect or enhance skins etc
09-14-2008 12:27 PM
Profile PM Web Find Quote Report
Willz
Senior Member
****

Avatar

Posts: 953
Reputation: 52
36 / Male / Flag
Joined: Jul 2006
RE: [suggestion] dynamic skin
If anyone wants to do that then be my guest, I wanted Open Live to lead to something like that once/if Plus skin and script bundles were made a reality.

Open Live is pretty straight forward to edit. Though WLM 9 will probably rain in on the project.
09-14-2008 12:51 PM
Profile PM Web Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: [suggestion] dynamic skin
I think it is great idea. Let's see who is going to be the scripter that will take up the project. :)
[Image: logo1nu1.png]
09-14-2008 01:08 PM
Profile PM Find Quote Report
Jarrod
Veteran Member
*****

Avatar
woot simpson

Posts: 1304
Reputation: 20
– / Male / Flag
Joined: Sep 2006
O.P. RE: [suggestion] dynamic skin
ok i'll do it but it'll be compiled python live with it, skins aren't indentation Dependant are they?

This post was edited on 09-15-2008 at 08:19 AM by Jarrod.

[Image: 5344.png]
[Image: sig.png]

A.k.a. The Glad Falconer














09-15-2008 06:43 AM
Profile E-Mail PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: [suggestion] dynamic skin
Its is probably best to wait until WLM 9.0 (unless you're gonna make 2 versions anyway)
<Eljay> "Problems encountered: shit blew up" :zippy:
09-15-2008 08:35 AM
Profile PM Find Quote Report
Jarrod
Veteran Member
*****

Avatar
woot simpson

Posts: 1304
Reputation: 20
– / Male / Flag
Joined: Sep 2006
O.P. RE: [suggestion] dynamic skin
so is this valid code?
code:
<SkinInfo Version="1.1">
    <Information>
        <Name>my skin</Name>
        <Description>a skin created with Jarrod's skin customiser, based on open live</Description>
        <AboutUrl>website</AboutUrl>
        <Version>1.5</Version>
        <Screenshot>
            <File>shot.png</File>
        </Screenshot>
    <Compatibility>
         <MsgVersion Major="8" Minor="5/>
    </Compatibility>
    </Infomation>
<Options>
<Messenger>
<ResetUserColour/>
</Messenger><PlusSkin>
    ResGroup>
        <PlusVersion Major="4" Minor"60"/>
        <InterfaceDir>PlusWindows</InterfaceDir>
</ResGroup>
</PlusSkin>
</SkinInfo>


sneak peak at source code
code:
def header():
    version = "1.1"
    name = "my skin"
    des = "a skin created with Jarrod's skin customiser, based on open live"
    website = "website"
    version_info = "1.5"
    screenshot = "shot.png"
    compat_maj = "8"
    compat_mi = "5"
    nfo1 = '<SkinInfo Version="' + version + '">\n\t<Information>\n\t\t<Name>' + name +'</Name>'
    nfo2 = '\n\t\t<Description>' + des + '</Description>\n\t\t<AboutUrl>' + website + '</AboutUrl>'
    nfo3 = '\n\t\t<Version>' + version_info + '</Version>\n\t\t<Screenshot>\n\t\t\t<File>' + screenshot + '</File>\n\t\t</Screenshot>'
    nfo4 = '\n\t<Compatibility>\n\t\t <MsgVersion Major="'+ compat_maj + '" Minor="' + compat_mi + '/>' + '\n\t</Compatibility>\n    '
    nfo5 = '</Infomation>'
    nfo = nfo1 + nfo2 + nfo3 + nfo4 + nfo5
   
    return nfo


to make it eaiser to skin wlm 9 do we have full lists of skinable elements, so i can map the list in python?

This post was edited on 09-15-2008 at 09:32 AM by Jarrod.

[Image: 5344.png]
[Image: sig.png]

A.k.a. The Glad Falconer














09-15-2008 09:13 AM
Profile E-Mail PM Find Quote Report
Willz
Senior Member
****

Avatar

Posts: 953
Reputation: 52
36 / Male / Flag
Joined: Jul 2006
RE: RE: [suggestion] dynamic skin
quote:
Originally posted by Jarrod
so is this valid code?
code:
<SkinInfo Version="1.1">
    <Information>
        <Name>my skin</Name>
        <Description>a skin created with Jarrod's skin customiser, based on open live</Description>
        <AboutUrl>website</AboutUrl>
        <Version>1.5</Version>
        <Screenshot>
            <File>shot.png</File>
        </Screenshot>
    <Compatibility>
         <MsgVersion Major="8" Minor="5/>
    </Compatibility>
    </Infomation>
<Options>
<Messenger>
<ResetUserColour/>
</Messenger><PlusSkin>
    ResGroup>
        <PlusVersion Major="4" Minor"60"/>
        <InterfaceDir>PlusWindows</InterfaceDir>
</ResGroup>
</PlusSkin>
</SkinInfo>


sneak peak at source code
code:
def header():
    version = "1.1"
    name = "my skin"
    des = "a skin created with Jarrod's skin customiser, based on open live"
    website = "website"
    version_info = "1.5"
    screenshot = "shot.png"
    compat_maj = "8"
    compat_mi = "5"
    nfo1 = '<SkinInfo Version="' + version + '">\n\t<Information>\n\t\t<Name>' + name +'</Name>'
    nfo2 = '\n\t\t<Description>' + des + '</Description>\n\t\t<AboutUrl>' + website + '</AboutUrl>'
    nfo3 = '\n\t\t<Version>' + version_info + '</Version>\n\t\t<Screenshot>\n\t\t\t<File>' + screenshot + '</File>\n\t\t</Screenshot>'
    nfo4 = '\n\t<Compatibility>\n\t\t <MsgVersion Major="'+ compat_maj + '" Minor="' + compat_mi + '/>' + '\n\t</Compatibility>\n    '
    nfo5 = '</Infomation>'
    nfo = nfo1 + nfo2 + nfo3 + nfo4 + nfo5
   
    return nfo


to make it eaiser to skin wlm 9 do we have full lists of skinable elements, so i can map the list in python?

Um the options tag not being closed will cause issues and the resgroup tag isn't opened properly.

I would seriously not bother with wlm 9 just yet just because we do not know for how much longer our info on it will be relevant (doesn't seem like it will be for much longer)

Skininfo version is also wrong. its either a 1 or a 2, if its a 2 it means it needs plus 4.60 or higher.

This post was edited on 09-15-2008 at 09:39 AM by Willz.
09-15-2008 09:38 AM
Profile PM Web Find Quote Report
Jarrod
Veteran Member
*****

Avatar
woot simpson

Posts: 1304
Reputation: 20
– / Male / Flag
Joined: Sep 2006
O.P. RE: [suggestion] dynamic skin
sweet, thanx i missed the options tag but i got the res group already plus i had no idea what the version was
lol thanx for that 2
edit:
that options tag will complicate things
can someone help me out for the sections in a skin?
also anyone who wants to help out gimme a yell, ajlangford[a_t]hotmail[dot]com
i really need help from a skinner if we want this to work given i have no idea what i'm doing


This post was edited on 09-15-2008 at 11:49 AM by Jarrod.

[Image: 5344.png]
[Image: sig.png]

A.k.a. The Glad Falconer














09-15-2008 10:11 AM
Profile E-Mail PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » 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