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

Find:

<InvSlot item = "LW_LootSlot0">


Immediately before that, ADD:

<Button item = "LW_BroadcastButton">
<ScreenID>BroadcastButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>10</X>
<Y>42</Y>
</Location>
<Size>
<CX>80</CX>
<CY>24</CY>
</Size>
<Style_Transparent>false</Style_Transparent>
<!--<TooltipReference/>-->
<Style_Checkbox>false</Style_Checkbox>
<!--<RadioGroup/>-->
<Text>Link all</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<ButtonDrawTemplate>
<Normal>A_BigBtnNormal</Normal>
<Pressed>A_BigBtnPressed</Pressed>
<Flyby>A_BigBtnFlyby</Flyby>
<Disabled>A_BigBtnDisabled</Disabled>
<PressedFlyby>A_BigBtnPressedFlyby</PressedFlyby>
</ButtonDrawTemplate>
</Button>


Find:

<Screen item = "LW_LootInvWnd">
<ScreenID>LootInvWnd</ScreenID>
<!--<Font/>-->
<RelativePosition>true</RelativePosition>
<AutoStretch>true</AutoStretch>
<LeftAnchorOffset>0</LeftAnchorOffset>
<TopAnchorOffset>42</TopAnchorOffset>


CHANGE:

<TopAnchorOffset>42</TopAnchorOffset>

TO:

<TopAnchorOffset>68</TopAnchorOffset>


Find:

<Pieces>LW_LootInvWnd</Pieces>


Immediately after that, ADD:

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