View Single Post
Old 02-10-2004, 10:24 AM   #5
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_BankWnd.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:

<Button item="BW_DoneButton">
<ScreenID>DoneButton</ScreenID>


CHANGE:

<Button item="BW_DoneButton">
<ScreenID>DoneButton</ScreenID>

TO:

<Button item="BW_ChangeButton">
<ScreenID>ChangeButton</ScreenID>


Find:

<Button item="BW_DoneButton">
<ScreenID>DoneButton</ScreenID>item="BW_ChangeButton">
<ScreenID>ChangeButton</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>25</X>
<Y>382</Y>
</Location>


CHANGE:

<Location>
<X>25</X>
<Y>382</Y>
</Location>

TO:

<Location>
<X>2</X>
<Y>382</Y>
</Location>


Find:

<Text>Done</Text>


Immediately before that line, ADD:

<Text>Change</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<ButtonDrawTemplate>
<Normal>A_BtnNormal</Normal>
<Pressed>A_BtnPressed</Pressed>
<Flyby>A_BtnFlyby</Flyby>
<Disabled>A_BtnDisabled</Disabled>
<PressedFlyby>A_BtnPressedFlyby</PressedFlyby>
</ButtonDrawTemplate>
</Button>
<Button item="BW_DoneButton">
<ScreenID>DoneButton</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>55</X>
<Y>382</Y>
</Location>
<Size>
<CX>40</CX>
<CY>24</CY>
</Size>
<Style_Transparent>false</Style_Transparent>
<Style_Checkbox>false</Style_Checkbox>


Find:

<Pieces>BW_DoneButton</Pieces>


Immediately after that line, ADD:

<Pieces>BW_ChangeButton</Pieces>
Cairenn is offline