View Single Post
Old 02-16-2005, 02:48 AM   #8
Dolby
Lord Dolby of Veeshan
 
Dolby's Avatar
 
Join Date: Jul 2002
Server: Veeshan
Posts: 2,397
Default EQUI_SelectorWnd.xml

IF you have a custom EQUI_SelectorWnd.xml, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:
Code:
<Button item = "SELW_JournalToggleButton"> <ScreenID>SELW_JournalToggleButton</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>390</X> <Y>0</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Style_Checkbox>true</Style_Checkbox> <TooltipReference>Journal</TooltipReference> <ButtonDrawTemplate> <Normal>A_JournalBtnNormal</Normal> <Pressed>A_JournalBtnPressed</Pressed> <Flyby>A_JournalBtnFlyby</Flyby> <Disabled>A_JournalBtnNormal</Disabled> <PressedFlyby>A_JournalBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button>

Immediately below that line, INSERT:
Code:
<!-- Mail Icons DO NOT CHANGE THE SCREENID NAMES --> <Ui2DAnimation item = "A_MailBtnNormal"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>88</X> <Y>178</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_MailBtnFlyby"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>114</X> <Y>178</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_MailBtnPressed"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>140</X> <Y>178</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_MailBtnPressedFlyby"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>166</X> <Y>178</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_MailBtnDisabled"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>192</X> <Y>178</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <!-- You've Got Mail Icons DO NOT CHANGE THE SCREENID NAMES --> <Ui2DAnimation item = "A_GotMailBtnNormal"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>88</X> <Y>204</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_GotMailBtnFlyby"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>114</X> <Y>204</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_GotMailBtnPressed"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>140</X> <Y>204</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_GotMailBtnPressedFlyby"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>166</X> <Y>204</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <Ui2DAnimation item = "A_GotMailBtnDisabled"> <Frames> <Texture>window_pieces04.tga</Texture> <Location> <X>192</X> <Y>204</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> </Frames> </Ui2DAnimation> <!-- Mail Button --> <Button item = "SELW_MailToggleButton"> <ScreenID>SELW_MailToggleButton</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>420</X> <Y>0</Y> </Location> <Size> <CX>26</CX> <CY>26</CY> </Size> <Style_Checkbox>true</Style_Checkbox> <TooltipReference>Mail</TooltipReference> <ButtonDrawTemplate> <Normal>A_GotMailBtnNormal</Normal> <Pressed>A_GotMailBtnPressed</Pressed> <Flyby>A_GotMailBtnFlyby</Flyby> <PressedFlyby>A_GotMailBtnPressedFlyby</PressedFlyby> <Disabled>A_MailBtnDisabled</Disabled> </ButtonDrawTemplate> </Button>


--

Find:
Code:
<Screen item = "SelectorWindow"> <!--<ScreenID/>--> <RelativePosition>false</RelativePosition> <Location> <X>135</X> <Y>0</Y> </Location> <Size> <CX>456</CX> <CY>50</CY> </Size>

WHERE:
Code:
<CX>456</CX>

CHANGE to:
Code:
<CX>482</CX>


--

Find:
Code:
<Pieces>SELW_JournalToggleButton</Pieces>

Immediately below that line, INSERT:
Code:
<Pieces>SELW_MailToggleButton</Pieces>
Dolby is offline