View Single Post
Old 04-08-2003, 07:29 AM   #3
Cairenn
Credendo Vides
 
Cairenn's Avatar
 
Join Date: Jul 2002
Posts: 3,866
Interface Author - Click to view interfaces
Default

IF you have a custom EQUI_BugReportWnd.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

FIND and DELETE:

<Label item ="BUGW_LocLabel">
<ScreenID/>
<!--<Font>3</Font>-->

ADD:

<Button item = "BUGW_LocationButton">
<ScreenID>LocationButton</ScreenID>

In that same section, FIND:

<LeftAnchorOffset>200</LeftAnchorOffset>

CHANGE to:

<LeftAnchorOffset>290</LeftAnchorOffset>

In that same section, FIND:

<TopAnchorToTop>true</TopAnchorToTop>

ADD:

<LeftAnchorToLeft>false</LeftAnchorToLeft>

DELETE:

<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<Text>Location:</Text>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>

<Editbox item = "BUGW_LocLabelX">
<ScreenID>LocX</ScreenID>
<DrawTemplate>WDT_Inner</DrawTemplate>
<RelativePosition>true</RelativePosition>

In that same section, FIND and DELETE:

<Style_Border>true</Style_Border>

ADD:

<Style_Checkbox>false</Style_Checkbox>
<TooltipReference>Change the location relating to this bug report to your current location.</TooltipReference>
<Text>Update Location</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<ButtonDrawTemplate>
<Normal>A_SmallBtnNormal</Normal>
<Pressed>A_SmallBtnPressed</Pressed>
<Flyby>A_SmallBtnFlyby</Flyby>
<Disabled>A_SmallBtnDisabled</Disabled>
<PressedFlyby>A_SmallBtnPressedFlyby</PressedFlyby>
</ButtonDrawTemplate>
</Button>

<Label item ="BUGW_LocLabelX">
<ScreenID>LocX</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>

FIND and DELETE:

<Style_Multiline>true</Style_Multiline>
</Editbox>

<Editbox item = "BUGW_LocLabelY">

ADD:

<Text>0</Text>
<NoWrap>true</NoWrap>
<AlignCenter>true</AlignCenter>
<AlignRight>false</AlignRight>
</Label>

<Label item ="BUGW_LocLabelY">

In that same section, FIND and DELETE:

<DrawTemplate>WDT_Inner</DrawTemplate>

ADD:

<!--<Font>3</Font>-->

In that same section, FIND and DELETE:

<Style_Transparent>false</Style_Transparent>
<Style_Border>true</Style_Border>

In that same section, FIND and DELETE:

<Style_Multiline>true</Style_Multiline>
</Editbox>

<Editbox item = "BUGW_LocLabelZ">

ADD:

<Text>0</Text>
<NoWrap>true</NoWrap>
<AlignCenter>true</AlignCenter>
<AlignRight>false</AlignRight>
</Label>

<Label item ="BUGW_LocLabelZ">

In that same section, FIND and DELETE:

<DrawTemplate>WDT_Inner</DrawTemplate>

ADD:

<!--<Font>3</Font>-->

In that same section, FIND and DELETE:

<Style_Transparent>false</Style_Transparent>
<Style_Border>true</Style_Border>

In that same section, FIND and DELETE:

<Style_Multiline>true</Style_Multiline>
</Editbox>

ADD:

<Text>0</Text>
<NoWrap>true</NoWrap>
<AlignCenter>true</AlignCenter>
<AlignRight>false</AlignRight>
</Label>

FIND and DELETE:

<Pieces>BUGW_LocLabel</Pieces>

ADD:

<Pieces>BUGW_LocationButton</Pieces>
Cairenn is offline   Reply With Quote