robert_dll
Full Member
Posts: 393 Reputation: 8
– / /
Joined: Aug 2008
|
RE: Very first skin
You just have to move a line in the file msgres_def_1002. Here's an example:
Look for
code: <MsgrGroupElement ResID=GroupTemplate Sheet=0 ID=atom(GroupTemplate) Layout=FillLayout() Active=0 Padding=Rect(2,2,2,0) Accessible=false>
<Element Class="BuddyListItem" Padding=Rect(0,2,0,2) Layout=BorderLayout() Active=3 AccName=bind(property:"Contacts::#WL_DisplayName") AccRole=64 AddBehavior=UXContacts:IP([StringNull],atom(PIPTarget)) ID=atom(group) LayoutPos=client ContentIndex=bind(property:"Contacts::Collapsed")>
<Element id=atom(PIPTarget) Layout=BorderLayout() LayoutPos=client Tag=0 Padding=Rect(0,0,0,0)>
<Element Class="ExpandCollapseIcon" Active=5 ContentIndex=bind(property:"Contacts::Collapsed") AddBehavior=Msgr::HideGlyph() AddBehavior=DUI::Fade() LayoutPos=left/>
<Element Padding=Rect(0,0,0,0) LayoutPos=left/>
<EmoText RichEditStyle=0x1000|0x400000 id=atom(BuddyListName) Class="BlueText" Content=bind(property:"Contacts::#WL_DisplayName") URLDetect=false Accessible=true Active=0 Tag=0 LayoutPos=left MaxTextLength=60/>
<Element id=atom(BuddyListStatus) Class="BlueText" Content=bind(property:"Contacts::Annotation") Margin=Rect(2,0,0,0) AddBehavior=DUI::Fade() AddBehavior=DUI:howHide() Tag=0 LayoutPos=left AddBehavior=DUI:howHide()/>
</Element>
</Element>
</MsgrGroupElement>
and change it to
code: <MsgrGroupElement ResID=GroupTemplate Sheet=0 ID=atom(GroupTemplate) Layout=FillLayout() Active=0 Padding=Rect(2,2,2,0) Accessible=false>
<Element Class="BuddyListItem" Padding=Rect(0,2,0,2) Layout=BorderLayout() Active=3 AccName=bind(property:"Contacts::#WL_DisplayName") AccRole=64 AddBehavior=UXContacts:IP([StringNull],atom(PIPTarget)) ID=atom(group) LayoutPos=client ContentIndex=bind(property:"Contacts::Collapsed")>
<Element id=atom(PIPTarget) Layout=BorderLayout() LayoutPos=client Tag=0 Padding=Rect(0,0,0,0)>
<Element Padding=Rect(0,0,0,0) LayoutPos=left/>
<EmoText RichEditStyle=0x1000|0x400000 id=atom(BuddyListName) Class="BlueText" Content=bind(property:"Contacts::#WL_DisplayName") URLDetect=false Accessible=true Active=0 Tag=0 LayoutPos=left MaxTextLength=60/>
<Element id=atom(BuddyListStatus) Class="BlueText" Content=bind(property:"Contacts::Annotation") Margin=Rect(2,0,0,0) AddBehavior=DUI::Fade() AddBehavior=DUI:howHide() Tag=0 LayoutPos=left AddBehavior=DUI:howHide()/>
<Element Class="ExpandCollapseIcon" Active=5 ContentIndex=bind(property:"Contacts::Collapsed") AddBehavior=Msgr::HideGlyph() AddBehavior=DUI::Fade() LayoutPos=left/>
</Element>
</Element>
</MsgrGroupElement>
I moved the line with the "ExpandCollapseIcon" text. Make this with all the groups to get what you want
This post was edited on 06-18-2009 at 11:16 PM by robert_dll.
|
|