View Single Post
Old 09-20-2003, 06:42 PM   #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_ActionsWindow.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:

<!-- Actions Main Page -->


Immediately after that, ADD:

<!-- Note that the Who Button is being "replaced" by the Find button, so here it has been shrunk to have 0x0 dimensions. The button still exists in the window, so you can feel free to put it back in your own custom skin, if you desire.-->


Find:

<Button item = "AMP_WhoButton">
<ScreenID>AMP_WhoButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>10</X>
<Y>10</Y>
</Location>
<Size>
<CX>90</CX>
<CY>20</CY>
</Size>


CHANGE:

<Size>
<CX>90</CX>
<CY>20</CY>
</Size>

TO:

<Size>
<CX>0</CX>
<CY>0</CY>
</Size>


Find:

<Button item = "AMP_InviteButton">


Immediately before that, ADD:

<Button item = "AMP_FindButton">
<ScreenID>AMP_FindButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>10</X>
<Y>10</Y>
</Location>
<Size>
<CX>90</CX>
<CY>20</CY>
</Size>
<Text>Find</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>


Find:

<Pieces>AMP_WhoButton</Pieces>


Immediately after that, ADD:

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