View Single Post
Old 03-24-2012, 09:12 PM   #1
Chakarum
A Shissar Disciple
 
Join Date: Nov 2002
Posts: 133
Interface Author - Click to view interfaces
Default Right align not working?

I'm trying to fix up a UI now that EQ is free to play, but running into an odd problem. Previously, I was able to right align the HP, Mana and End numbers, but now the same code doesn't work (it leaves them left aligned). Here is my code:

Code:
<Label item="IW_Mana"> <ScreenID>ManaNumberLabel</ScreenID> <EQType>128</EQType> <!--<Font>3</Font>--> <RelativePosition>true</RelativePosition> <Location> <X>80</X> <Y>79</Y> </Location> <Size> <CX>100</CX> <CY>14</CY> </Size> <Text>00000 / 00000</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>false</AlignCenter> <AlignRight>True</AlignRight> <AlignLeft>false</AlignLeft> </Label>


I can position everything where I want it left-aligned, but it looks odd on non-casters since the 0/0 is "floating" in the middle of the pane, instead of moving right like I would expect.

Any ideas?
Chakarum is offline   Reply With Quote