<!-- Default formatting --> <Defaults> <Text color="black" alignment="MiddleLeft"/> <Text class="h1" fontSize="160" font="font_teutonic-arkham"/> <Text class="h2" fontSize="120" font="font_teutonic-arkham"/> <Text class="p" fontSize="60" alignment="UpperLeft"/> <Panel rotation="0 0 180"/> <Panel class="window" width="1500" height="1500" color="white" outline="white" outlineSize="10 10"/> <Row dontUseTableRowBackground="true"/> <Row class="header" color="#707070"/> <Row class="option" preferredHeight="200" color="#9e9e9e"/> <!-- row heights: 70 x lines + 50 --> <Row class="description" color="#cfcfcf"/> <Button class="optionToggle" rectAlignment="MiddleRight" offsetXY="-30 0" colors="#FFFFFF|#dfdfdf" height="160" width="288" ignoreLayout="True" fontSize="60"/> </Defaults> <!-- Option window --> <Panel id="options" class="window" offsetXY="-580 200" scale="0.5 0.5" active="false" showAnimation="FadeIn" hideAnimation="FadeOut"> <TableLayout cellPadding="25 25 15 15"> <!-- Header --> <Row class="header"> <Cell> <Text class="h1">Clean up Helper - Options</Text> </Cell> </Row> <!-- Option --> <Row class="option"> <Cell> <Text class="h2">Import trauma</Text> <Button class="optionToggle" id="importTrauma" onClick="optionButtonClick(importTrauma)" image="option_on"/> </Cell> </Row> <Row class="description" preferredHeight="330"> <Cell> <Text class="p">Enables importing trauma values from the campaign log (custom content might give wrong values!).
Enter players in the campaign log in this order:
White, Orange, Green, Red.</Text> </Cell> </Row> <!-- Option --> <Row class="option"> <Cell> <Text class="h2">Tidy playermats</Text> <Button class="optionToggle" id="tidyPlayermats" onClick="optionButtonClick(tidyPlayermats)" image="option_on"/> </Cell> </Row> <Row class="description" preferredHeight="190"> <Cell> <Text class="p">Controls whether the playermats should get tidied (removal of all cards and tokens).</Text> </Cell> </Row> <!-- Option --> <Row class="option"> <Cell> <Text class="h2">Remove drawn lines</Text> <Button class="optionToggle" id="removeDrawnLines" onClick="optionButtonClick(removeDrawnLines)" image="option_off"/> </Cell> </Row> <Row class="description" preferredHeight="120"> <Cell> <Text class="p">Controls whether all drawn lines should be removed.</Text> </Cell> </Row> </TableLayout> </Panel>