ResGroup Wordwheel not changing.. - 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: ResGroup Wordwheel not changing.. (/showthread.php?tid=82379)
ResGroup Wordwheel not changing.. by duck! on 03-15-2008 at 08:51 PM
I have some trouble when the wordwheel is set to "Bottom" the images 379 and 380 are supposed to change but its not =/
The Option to move the wordwheel -
code: <MultiVal Name="Word">
<DispLabel>Change location of Wordwheel</DispLabel>
<DispHelp>Pick a location, click okay, restart messenger</DispHelp>
<Values>
<Value DispLabel="Top">Top</Value>
<Value DispLabel="Bottom">Bottom</Value>
<Value DispLabel="None">None</Value>
</Values>
<Default>Top</Default>
</MultiVal>
Skininfo - The Resgroup of when the wordwheel is set to "Bottom"
code: <ResGroup>
<Restrictions>
<MsgVersions>
<Version Major="8" Minor="5"/>
</MsgVersions>
<SkinOptions>
<OptionSet>
<Conditions>Word = "bottom"</Conditions>
</OptionSet>
</SkinOptions>
</Restrictions>
<Resources>
<Replace>
<Graphics>
<Pictures>
<Picture id="379">
<File>images/379.png</File>
</Picture>
<Picture id="380">
<File>images/380.png</File>
</Picture>
</Pictures>
</Graphics>
</Replace>
</Resources>
</ResGroup>
Thanks, Once i get this sorted Duck Live 1.06 is ready to go
RE: ResGroup Wordwheel not changing.. by aNILEator on 03-16-2008 at 12:46 AM
yeah messenger itself has bugs within the contact list so it might be that i've had issues with wordwheel before
RE: ResGroup Wordwheel not changing.. by duck! on 03-16-2008 at 01:59 AM
quote: Originally posted by aNILEator
yeah messenger itself has bugs within the contact list so it might be that i've had issues with wordwheel before
I decided to do it a different way, the res group did not seem to work at all.
I open 44103 styles, and did
code: <*PlusSkin Conditions(Word = "Bottom") *>
Element[id=atom(wordWheelTextBorder)]
{
Padding:Rect(8,8,8,8);
Background:rcbkd(59060);
}
Element[id=atom(wordWheelContentBorder)]
{
Padding:Rect(8,8,8,8);
Background:rcbkd(59060);
}
Element[id=atom(wordWheelContentBorder)][class="HasContent"]
{
Background:rcbkd(59061);
}
</*PlusSkin*><*PlusSkin Conditions(Word = "Top") *>
Element[id=atom(wordWheelTextBorder)]
{
Padding:Rect(8,8,8,8);
Background:rcbkd(379);
}
Element[id=atom(wordWheelContentBorder)]
{
Padding:Rect(8,8,8,8);
Background:rcbkd(379);
}
Element[id=atom(wordWheelContentBorder)][class="HasContent"]
{
Background:rcbkd(380);
}
</*PlusSkin*>
and then in skininfo under New and Pictures
code: <Picture Id="59060"><File>images\379.png</File> <Metadata>
<Colorize>false</Colorize>
<UMLeft>11</UMLeft>
<UMTop>15</UMTop>
<UMRight>11</UMRight>
<UMBottom>15</UMBottom>
</Metadata></Picture>
<Picture Id="59061"><File>images\380.png</File> <Metadata>
<Colorize>false</Colorize>
<UMLeft>11</UMLeft>
<UMTop>15</UMTop>
<UMRight>11</UMRight>
<UMBottom>15</UMBottom>
</Metadata></Picture>
and it works fine now , although it would of much preferred it if the Resgroup Method worked..
|