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

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

Find:
Code:
<!-- The DZ Window --> <Screen item = "DynamicZoneWnd"> <RelativePosition>false</RelativePosition> <Location> <X>100</X> <Y>60</Y> </Location> <Size> <CX>400</CX> <CY>420</CY> </Size> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <Text>Expedition Information</Text> <DrawTemplate>WDT_Rounded</DrawTemplate> <Style_Titlebar>true</Style_Titlebar> <Style_Closebox>true</Style_Closebox> <Style_Minimizebox>true</Style_Minimizebox> <Style_Border>true</Style_Border> <Style_Sizable>false</Style_Sizable> <Pieces>DZ_CurrentDZ</Pieces> <Pieces>DZ_CurrentDZValue</Pieces> <Pieces>DZ_Leader</Pieces> <Pieces>DZ_LeaderValue</Pieces> <Pieces>DZ_MemberList</Pieces> <Pieces>DZ_TimerLabel</Pieces> <Pieces>DZ_TimerList</Pieces> <Pieces>DZLeaderSection</Pieces> <Pieces>DZ_Quit</Pieces> <Pieces>DZ_NumPlayers</Pieces> <Pieces>DZ_NumPlayersValue</Pieces> <Pieces>DZ_MaxPlayers</Pieces> <Pieces>DZ_MaxPlayersValue</Pieces> <!-- <Pieces>DZ_FindSwitch</Pieces> --> <!-- <Pieces>DZ_CancelFindSwitch</Pieces> --> </Screen>

Immediately below that line, INSERT:
Code:
<!-- The switch list window --> <Button item = "DZSwitchList_OK"> <ScreenID>DZSwitchList_OK</ScreenID> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>110</LeftAnchorOffset> <TopAnchorOffset>29</TopAnchorOffset> <RightAnchorOffset>10</RightAnchorOffset> <BottomAnchorOffset>5</BottomAnchorOffset> <TopAnchorToTop>false</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>false</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <Style_Checkbox>false</Style_Checkbox> <Text>OK</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> <Button item = "DZSwitchList_Cancel"> <ScreenID>DZSwitchList_Cancel</ScreenID> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>10</LeftAnchorOffset> <TopAnchorOffset>29</TopAnchorOffset> <RightAnchorOffset>110</RightAnchorOffset> <BottomAnchorOffset>5</BottomAnchorOffset> <TopAnchorToTop>false</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>true</RightAnchorToLeft> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <Style_Checkbox>false</Style_Checkbox> <Text>Cancel</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> <Listbox item = "DZSwitchList_List"> <ScreenID>DZSwitchList_List</ScreenID> <DrawTemplate>WDT_Inner</DrawTemplate> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>5</LeftAnchorOffset> <TopAnchorOffset>5</TopAnchorOffset> <RightAnchorOffset>5</RightAnchorOffset> <BottomAnchorOffset>45</BottomAnchorOffset> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Style_Border>true</Style_Border> <Style_VScroll>true</Style_VScroll> <Columns> <Width>80</Width> <Heading>Type:</Heading> </Columns> <Columns> <Width>300</Width> <Heading>Description:</Heading> </Columns> <Columns> <Width>100</Width> <Heading>Leader:</Heading> </Columns> </Listbox> <Screen item = "DynamicZoneSwitchListWnd"> <RelativePosition>false</RelativePosition> <Location> <X>100</X> <Y>60</Y> </Location> <Size> <CX>500</CX> <CY>150</CY> </Size> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <Text>Choose which zone to enter</Text> <DrawTemplate>WDT_Rounded</DrawTemplate> <Style_Titlebar>true</Style_Titlebar> <Style_Closebox>true</Style_Closebox> <Style_Minimizebox>true</Style_Minimizebox> <Style_Border>true</Style_Border> <Style_Sizable>true</Style_Sizable> <Pieces>DZSwitchList_List</Pieces> <Pieces>DZSwitchList_Cancel</Pieces> <Pieces>DZSwitchList_OK</Pieces> </Screen>
Dolby is offline