Shoutbox

[?] Status Selector in Coversation Window - 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: [?] Status Selector in Coversation Window (/showthread.php?tid=90921)

[?] Status Selector in Coversation Window by prashker on 06-04-2009 at 02:52 AM

Can someone give me the code I'll need to insert it into the convo window :p?

Most skins I use do not have this, so I'd love something I can just copy paste into these skins and it'd work :p

Thanks,
-Sam

PS: What I am talking about is the bottom left thing
[Image: 2my6alz.png]


RE: [?] Status Selector in Coversation Window by LuckyMe on 06-04-2009 at 03:45 AM

920 def.

look for this line.

quote:
<button cmdid=2251 id=atom(medropdownbtn) accdesc=rcstr("msgr",44055) layoutpos=top class="AvatarDropDownBtn" selected=false layout=FillLayout()/>


copy-paste this:

quote:
<button class="HIGToolbarButton" layoutpos=top layout=BorderLayout() id=atom(Onlinebtn) cmdid=40166 AccRole=43 AccDefAction=rcstr(20500) Tooltip=true active=7 accname=rcstr("msgr",60250) AccDesc=rcstr("msgr",46724)>
<ButtonIcon class="HIGToolbarIcon" content=rcimg("msgr",48014) ContentAlign=middlecenter padding=rcrect(20140)/>
<element layoutpos=right ContentAlign=middlecenter layout=FillLayout()>
<ButtonText Id=atom(ButtonTextId) class="HIGToolbarText" content="" FontSize=rcint(20958)pt ContentAlign=middlecenter padding=rcrect(20141) Shortcut=0/>
</element>
</button>
<button class="HIGToolbarButton" layoutpos=top layout=BorderLayout() id=atom(Busybtn) cmdid=40168 AccRole=43 AccDefAction=rcstr(20500) Tooltip=true active=7 accname=rcstr("msgr",60250) AccDesc=rcstr("msgr",46727)>
<ButtonIcon class="HIGToolbarIcon" content=rcimg("msgr",48017) ContentAlign=middlecenter padding=rcrect(20140)/>
<element layoutpos=right ContentAlign=middlecenter layout=FillLayout()>
<ButtonText Id=atom(ButtonTextId) class="HIGToolbarText" content="" FontSize=rcint(20958)pt ContentAlign=middlecenter padding=rcrect(20141) Shortcut=0/>
</element>
</button>
<button class="HIGToolbarButton" layoutpos=top layout=BorderLayout()  id=atom(Awaybtn) cmdid=40169 AccRole=43 AccDefAction=rcstr(20500) Tooltip=true active=7 accname=rcstr("msgr",60250) AccDesc=rcstr("msgr",46726)>
<ButtonIcon class="HIGToolbarIcon" content=rcimg("msgr",48015) ContentAlign=middlecenter padding=rcrect(20140)/>
<element layoutpos=right ContentAlign=middlecenter layout=FillLayout()>
<ButtonText Id=atom(ButtonTextId) class="HIGToolbarText" content="" FontSize=rcint(20958)pt ContentAlign=middlecenter padding=rcrect(20141) Shortcut=0/>
</element>
</button>
<button class="HIGToolbarButton" layoutpos=top layout=BorderLayout() id=atom(Offlinebtn) cmdid=40167 AccRole=43 AccDefAction=rcstr(20500) Tooltip=true active=7 accname=rcstr("msgr",60250) AccDesc=rcstr("msgr",46725)>
<ButtonIcon class="HIGToolbarIcon" content=rcimg("msgr",48016) ContentAlign=middlecenter padding=rcrect(20140)/>
<element layoutpos=right ContentAlign=middlecenter layout=FillLayout()>
<ButtonText Id=atom(ButtonTextId) class="HIGToolbarText" content="" FontSize=rcint(20958)pt ContentAlign=middlecenter padding=rcrect(20141) Shortcut=0/>
</element>
</button>
<button class="HIGToolbarButton" layoutpos=top layout=BorderLayout()  id=atom(Logoutbtn) cmdid=40210 AccRole=43 AccDefAction=rcstr(20500) Tooltip=true active=7 accname=rcstr("msgr",60250) AccDesc=rcstr("msgr",770)>
<ButtonIcon class="HIGToolbarIcon" content=rcimg("msgr",59186) ContentAlign=middlecenter padding=rcrect(20140)/>
<element layoutpos=right ContentAlign=middlecenter layout=FillLayout()>
<ButtonText Id=atom(ButtonTextId) class="HIGToolbarText" content="" FontSize=rcint(20958)pt ContentAlign=middlecenter padding=rcrect(20141) Shortcut=0/>
</element>
</button>


*59186: belongs to a new specified picture in Skininfo.xml:

quote:
<New>
<Pictures>
<Picture Id="59186">
<File>images/59186.png</File>
</Picture>
</Pictures>
</New>

   
so you may need to edit that, and place that icon (logout) on skin folder too.
I hope that helps :D
RE: [?] Status Selector in Coversation Window by prashker on 06-04-2009 at 11:33 AM

Thanks :banana:

Works great :D