ClickBoxer
Jump to navigation
Jump to search
Introduction
ClickBoxer is a customizable user interface for multi-boxing with Inner Space.
Layouts
The layout files presented below can be pasted into an XML file (create a new file, paste, and save as ClickBoxer.XML for example) and placed in the Interface folder of your Inner Space installation.
- To load a layout
ui -load ClickBoxer
- To load a layout using a skin of your choice (example using WoWSkin, also note that the XML containing the skin must have already been loaded via ui -load)
ui -load -skin WoWSkin ClickBoxer
Layout 1
<?xml version="1.0" encoding="UTF-8"?> <ISUI> <Window name='clickboxer'> <Title>ClickBoxer</Title> <X>200</X> <Y>200</Y> <Width>300</Width> <Height>76</Height> <Border /> <Children> <frame name='all'> <Texture/> <BackgroundColor/> <Width>100%</Width> <Height>20</Height> <Children> <text name='all'> <Text>all</Text> <Y>4</Y> <Width>48</Width> <Height>12</Height> <Alignment>Right</Alignment> </text> <button name='follow'> <X>50</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Follow</Text> <OnLeftClick> <![CDATA[ relay all press alt+f ]]> </OnLeftClick> </button> <button name='assist'> <X>100</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Assist</Text> <OnLeftClick> <![CDATA[ relay all "press f2;press alt+a" ]]> </OnLeftClick> </button> <button name='melee'> <X>150</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Melee</Text> <OnLeftClick> <![CDATA[ relay all press q ]]> </OnLeftClick> </button> <button name='atk 1'> <X>200</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>atk 1</Text> <OnLeftClick> <![CDATA[ relay all press 1 ]]> </OnLeftClick> </button> <button name='atk 2'> <X>250</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>atk 2</Text> <OnLeftClick> <![CDATA[ relay all press 2 ]]> </OnLeftClick> </button> </Children> </frame> <frame name='is1'> <Texture/> <BackgroundColor/> <Y>20</Y> <Width>100%</Width> <Height>20</Height> <Children> <text name='is1'> <Text>is1</Text> <Y>4</Y> <Width>48</Width> <Height>12</Height> <Alignment>Right</Alignment> </text> <button name='follow'> <X>50</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Follow</Text> <OnLeftClick> <![CDATA[ relay is1 press alt+f ]]> </OnLeftClick> </button> <button name='assist'> <X>100</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Assist</Text> <OnLeftClick> <![CDATA[ relay all "press f2;press alt+a" ]]> </OnLeftClick> </button> <button name='melee'> <X>150</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Melee</Text> <OnLeftClick> <![CDATA[ relay is1 press q ]]> </OnLeftClick> </button> <button name='atk 1'> <X>200</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>atk 1</Text> <OnLeftClick> <![CDATA[ relay is1 press 1 ]]> </OnLeftClick> </button> <button name='atk 2'> <X>250</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>atk 2</Text> <OnLeftClick> <![CDATA[ relay is1 press 2 ]]> </OnLeftClick> </button> </Children> </frame> <frame name='is2'> <Texture/> <BackgroundColor/> <Y>40</Y> <Width>100%</Width> <Height>20</Height> <Children> <text name='is2'> <Text>is2</Text> <Y>4</Y> <Width>48</Width> <Height>12</Height> <Alignment>Right</Alignment> </text> <button name='follow'> <X>50</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Follow</Text> <OnLeftClick> <![CDATA[ relay is2 press alt+f ]]> </OnLeftClick> </button> <button name='assist'> <X>100</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Assist</Text> <OnLeftClick> <![CDATA[ relay all "press f2;press alt+a" ]]> </OnLeftClick> </button> <button name='melee'> <X>150</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>Melee</Text> <OnLeftClick> <![CDATA[ relay is2 press q ]]> </OnLeftClick> </button> <button name='atk 1'> <X>200</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>atk 1</Text> <OnLeftClick> <![CDATA[ relay is2 press 1 ]]> </OnLeftClick> </button> <button name='atk 2'> <X>250</X> <Y>2</Y> <Width>48</Width> <Height>16</Height> <Text>atk 2</Text> <OnLeftClick> <![CDATA[ relay is2 press 2 ]]> </OnLeftClick> </button> </Children> </frame> </Children> </Window> </ISUI>