Hay! I'm looking for a way to hide and show the Personal Message element in the contact list.
This is what I would like to see:
Normal state: personal message not visible
mouse over state: personal message visible
So basicly, when I hover my mouse over the psm area, it gets visible.
I tried setting a 2nd, [MouseFocused] tag to the existing part of code of the 923 style, but that results in messenger crashing all together when hovering the mouse over the psm.
code:
code:
}
labelrichedit[id=atom(idPSMText)][class="PSM"]
{
contentalign:endellipsis;
enabled:false;
Alpha:0;
}
labelrichedit[id=atom(idPSMText)][class="PSM"][MouseFocused]
{
contentalign:endellipsis;
enabled:false;
}
The above code doesn't work. Is there an alternate method of dynamic hiding, or am I doing something wrong?