View Single Post
Old 02-11-2005, 03:05 PM   #3
Dolby
Lord Dolby of Veeshan
 
Dolby's Avatar
 
Join Date: Jul 2002
Server: Veeshan
Posts: 2,397
Default EQUI_AdventureRequestWnd.xml

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

Find:
Code:
<ButtonDrawTemplate> <Normal>A_BtnNormal</Normal> <Pressed>A_BtnPressed</Pressed> <Flyby>A_BtnFlyby</Flyby> <Disabled>A_BtnDisabled</Disabled> <PressedFlyby>A_BtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button>

Immediately below that line, INSERT:
Code:
<!-- Type Combobox --> <Label item ="AdvRqst_TypeLabel"> <ScreenID>AdvRqst_TypeLabel</ScreenID> <RelativePosition>true</RelativePosition> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>10</LeftAnchorOffset> <TopAnchorOffset>105</TopAnchorOffset> <RightAnchorOffset>50</RightAnchorOffset> <BottomAnchorOffset>87</BottomAnchorOffset> <TopAnchorToTop>false</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>true</RightAnchorToLeft> <Text>Type:</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>false</AlignCenter> <AlignRight>false</AlignRight> </Label> <Combobox item = "AdvRqst_TypeCombobox"> <ScreenID>AdvRqst_TypeCombobox</ScreenID> <DrawTemplate>WDT_Inner</DrawTemplate> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>50</LeftAnchorOffset> <TopAnchorOffset>108</TopAnchorOffset> <RightAnchorOffset>150</RightAnchorOffset> <BottomAnchorOffset>84</BottomAnchorOffset> <TopAnchorToTop>false</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>true</RightAnchorToLeft> <ListHeight>80</ListHeight> <Button>BDT_Combo</Button> <Style_Border>true</Style_Border> <Choices>Random</Choices> <Choices>Single Boss</Choices> <Choices>Mob count</Choices> <Choices>Collection</Choices> <Choices>Rescue</Choices> </Combobox>


--

Find:
Code:
<LeftAnchorOffset>117</LeftAnchorOffset>

REPALCE with:
Code:
<LeftAnchorOffset>145</LeftAnchorOffset>


--

Find:
Code:
<RightAnchorOffset>247</RightAnchorOffset>

REPALCE with:
Code:
<RightAnchorOffset>15</RightAnchorOffset>


--

Find:
Code:
<LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>true</RightAnchorToLeft>

REPALCE with:
Code:
<LeftAnchorToLeft>false</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft>


--

Find:
Code:
<Pieces>AdvRqst_RiskLabel</Pieces>

Immediately below that line, INSERT:
Code:
<Pieces>AdvRqst_TypeLabel</Pieces>


--

Find:
Code:
<Pieces>AdvRqst_DeclineButton</Pieces>

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