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

Find:

<TabBox item = "AAW_Subwindows">


Immediately before that line, ADD:

<Listbox item = "AAW_List6">
<ScreenID>List6</ScreenID>
<DrawTemplate>WDT_Inner</DrawTemplate>
<AutoStretch>true</AutoStretch>
<TopAnchorToTop>true</TopAnchorToTop>
<BottomAnchorToTop>false</BottomAnchorToTop>
<LeftAnchorToLeft>true</LeftAnchorToLeft>
<RightAnchorToLeft>false</RightAnchorToLeft>

<Style_Border>true</Style_Border>
<Style_VScroll>true</Style_VScroll>
<Columns>
<Width>210</Width>
<Heading>Title</Heading>
</Columns>
<Columns>
<Width>70</Width>
<Heading>Cur/Max</Heading>
</Columns>
<Columns>
<Width>40</Width>
<Heading>Cost</Heading>
</Columns>
</Listbox>

<Page item = "AAW_Page6">
<ScreenID>Page6</ScreenID>
<RelativePosition>true</RelativePosition>

<!-- Pages are sized and positioned by their parent tab -->

<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<TooltipReference/>
<DrawTemplate>WDT_Def</DrawTemplate>
<TabText>Gates</TabText>
<TabTextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TabTextColor>
<TabTextActiveColor>
<R>255</R>
<G>255</G>
<B>0</B>
</TabTextActiveColor>
<Style_Sizable>true</Style_Sizable>
<Pieces>AAW_List6</Pieces>

</Page>


Find:

<Pages>AAW_Page5</Pages>


Immediately after that line, ADD:

<Pages>AAW_Page6</Pages>
Cairenn is offline