View Single Post
Old 05-11-2003, 11:58 AM   #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_HelpWnd.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:

<Button item = "HELP_Contents">

Immediately Before that, ADD:

<Button item = "HELP_Tips">
<ScreenID>TipsButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<AutoStretch>true</AutoStretch>
<LeftAnchorOffset>168</LeftAnchorOffset>
<TopAnchorOffset>2</TopAnchorOffset>
<RightAnchorOffset>88</RightAnchorOffset>
<BottomAnchorOffset>26</BottomAnchorOffset>
<TopAnchorToTop>true</TopAnchorToTop>
<BottomAnchorToTop>true</BottomAnchorToTop>
<RightAnchorToLeft>false</RightAnchorToLeft>
<LeftAnchorToLeft>false</LeftAnchorToLeft>
<Size>
<CX>40</CX>
<CY>24</CY>
</Size>
<TooltipReference>Bring up the Tip of the Day window</TooltipReference>
<Style_Checkbox>false</Style_Checkbox>
<Text>Show Tips</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>

Then Find:

<Screen item = "HelpWindow">
<!--<ScreenID/>-->
<RelativePosition>false</RelativePosition>
<Location>
<X>100</X>
<Y>200</Y>
</Location>
<Size>
<CX>320</CX>
<CY>200</CY>
</Size>

CHANGE:

<Location>
<X>100</X>
<Y>200</Y>
</Location>

To:

<X>120</X>
<Y>90</Y>
</Location>


CHANGE:

<Size>
<CX>320</CX>
<CY>200</CY>
</Size>


To:

<Size>
<CX>400</CX>
<CY>300</CY>
</Size>

FIND:

<Pieces>HELP_Title</Pieces>

ADD:

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