RE: Scrollbars in CL(20152, 20153)
I suggest instead of doing this in the UIFile, just specify in the SkinInfo that if the option is true, the image 59015 will be replace by image1 and if the option is false, the image 59015 will be replaced by image2. Wait to post an example of what I mean
Here it is:
<ResGroup>
<Restrictions>
<MsgVersions>
<Version Major="8" Minor="5"/>
</MsgVersions>
<SkinOptions>
<OptionSet>
<Conditions>CBLG = "True"</Conditions>
</OptionSet>
</SkinOptions>
</Restrictions>
<Resources>
<New>
<Pictures>
<Picture Id="59015">
<File>Image1.png</File>
</Picture>
</Pictures>
</New>
</Resources>
</ResGroup>
<ResGroup>
<Restrictions>
<MsgVersions>
<Version Major="8" Minor="5"/>
</MsgVersions>
<SkinOptions>
<OptionSet>
<Conditions>CBLG = "False"</Conditions>
</OptionSet>
</SkinOptions>
</Restrictions>
<Resources>
<New>
<Pictures>
<Picture Id="59015">
<File>Image2.png</File>
</Picture>
</Pictures>
</New>
</Resources>
</ResGroup>
This post was edited on 06-25-2008 at 10:57 AM by Basilis.
|