View Single Post
  #3  
Unread 03-25-2013, 09:30 PM
Mysstie's Avatar
Mysstie Mysstie is offline
A Griffon
 
Join Date: Oct 2008
Server: Oasis
Posts: 179
Default

I fixed it, sorta. The problem was actually in one of the Default UI files, mainly, eq2ui_windowelements.xml which was pulling a part out of images/specialelements.dds that included the part where the round piece is for the clock/dial but was going too far and also grabbed the left sides of the Station Cash buttons.

Original code:
Code:
<Page Location="763,515" Name="ThickDesktopWindowFrame" ScrollExtent="200,200" Size="200,200">
        <Text Font="/TextStyles.Normal.NormalStyle" Location="39,49" Name="Label" ScrollExtent="151,19" ShadowStyle="/ShadowStylesNew.Drop.style" Size="151,19">:63b143de5f518caa:DesktopWindowFrame</Text>
        <Page Name="CopyAndPasteMe" PackSize="absolute,absolute" ScrollExtent="200,200" Size="200,200">
            <Page AbsorbsInput="false" BackgroundOpacity="1.000" Name="Frame" PackLocation="left,top" PackSize="absolute,absolute" RStyleDefault="data.frame.rect" ScrollExtent="200,200" Size="200,200" />
            <Page AbsorbsInput="false" BackgroundOpacity="1.000" Location="2,3" Name="Bkg" PackLocation="left,top" PackSize="absolute,absolute" RStyleDefault="data.bkg.rect" ScrollExtent="195,194" Size="195,194" />
        </Page>
        <Namespace Name="data">
            <Namespace Name="right_grouper">
                <ImageStyle Filter="true" Name="w">
                    <ImageFrame Name="image" Source="images/specialelements.dds" SourceRect="120,425,156,504" />
                </ImageStyle>
                <ImageStyle Filter="true" Name="e">
                    <ImageFrame Name="image" Source="images/specialelements.dds" SourceRect="294,425,355,504" />
                </ImageStyle>
                <ImageStyle Filter="true" Name="center">
                    <ImageFrame Name="image" Source="images/specialelements.dds" SourceRect="157,425,293,504" />
                </ImageStyle>
                <RectangleStyle Center="center" CenterStretchH="false" East="e" Name="rect" West="w" />
            </Namespace>
I changed this part of that code:
Quote:
<ImageStyle Filter="true" Name="e">
<ImageFrame Name="image" Source="images/specialelements.dds" SourceRect="294,425,354,504" />
</ImageStyle>
I changed the 355 to 354 and I no longer see that sliver, but it did cause that whole part of the Titlebar piece to shift to right of the inner frame by one pixel.

_Skinnable_WindowElementsMini.xml, _Skinnable_WindowElements.xml, or eq2ui_mainhud_map2.xml might also play into this somehow.

Regardless.. eq2ui_windowelements.xml was pulling out a couple pixels worth of those Station Cash buttons when it shouldn't anyway.
__________________
- Mysstie

Last edited by Mysstie : 03-25-2013 at 10:03 PM.
Reply With Quote