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

Find:

<Listbox item = "CSSW_SkillSelectorList">
<ScreenID>CSSW_SkillSelectorList</ScreenID>
<DrawTemplate>WDT_Inner</DrawTemplate>

<AutoStretch>true</AutoStretch>

<RightAnchorToLeft>false</RightAnchorToLeft>
<BottomAnchorToTop>false</BottomAnchorToTop>
<LeftAnchorOffset>4</LeftAnchorOffset>
<TopAnchorOffset>4</TopAnchorOffset>
<RightAnchorOffset>4</RightAnchorOffset>
<BottomAnchorOffset>32</BottomAnchorOffset>


CHANGE:

<BottomAnchorOffset>32</BottomAnchorOffset>

TO:

<BottomAnchorOffset>84</BottomAnchorOffset>


Find:

<Button item = "CSSW_MakeHotkeyButton">


Immediately before that line, ADD:

<STMLbox item = "CSSW_SkillDescriptionStmlBox">
<ScreenID>CSSW_SkillDescriptionStmlBox</ScreenID>

<DrawTemplate>WDT_Inner</DrawTemplate>

<RelativePosition>true</RelativePosition>

<AutoStretch>true</AutoStretch>

<RightAnchorToLeft>false</RightAnchorToLeft>
<TopAnchorToTop>false</TopAnchorToTop>
<BottomAnchorToTop>false</BottomAnchorToTop>
<LeftAnchorOffset>4</LeftAnchorOffset>
<TopAnchorOffset>82</TopAnchorOffset>
<RightAnchorOffset>4</RightAnchorOffset>
<BottomAnchorOffset>32</BottomAnchorOffset>

<Style_VScroll>false</Style_VScroll>
<Style_Border>true</Style_Border>
<Text></Text>
</STMLbox>


Find:

<Screen item = "CombatSkillSelectWnd">
<RelativePosition>false</RelativePosition>
<Location>
<X>150</X>
<Y>55</Y>
</Location>
<Size>
<CX>470</CX>
<CY>250</CY>
</Size>


CHANGE:

<Size>
<CX>470</CX>
<CY>250</CY>
</Size>

TO:

<Size>
<CX>470</CX>
<CY>280</CY>
</Size>


Find:

<Pieces>CSSW_SkillSelectorList</Pieces>


Immediately after that line, ADD:

<Pieces>CSSW_SkillDescriptionStmlBox</Pieces>
Cairenn is offline