Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.CheckBox?>
  5. <?import javafx.scene.control.TextField?>
  6. <?import javafx.scene.control.Tooltip?>
  7. <?import javafx.scene.layout.AnchorPane?>
  8. <?import javafx.scene.layout.VBox?>
  9. <?import javafx.scene.text.Font?>
  10. <?import javafx.scene.text.Text?>
  11.  
  12. <VBox prefHeight="368.0" prefWidth="350.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="scripts.GUI.GUIController">
  13. <children>
  14. <AnchorPane maxHeight="-1.0" maxWidth="-1.0" prefHeight="400.0" prefWidth="324.0" VBox.vgrow="ALWAYS">
  15. <children>
  16. <Text layoutY="36.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Harden's Bone Delivery" textAlignment="CENTER" wrappingWidth="349.9999965727329">
  17. <font>
  18. <Font name="Times New Roman Bold" size="30.0" />
  19. </font>
  20. </Text>
  21. <Text layoutX="143.0" layoutY="80.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Job Title?" textAlignment="CENTER">
  22. <font>
  23. <Font name="Times New Roman Bold" size="15.0" />
  24. </font>
  25. </Text>
  26. <CheckBox layoutX="127.0" layoutY="92.0" mnemonicParsing="false" text="Bone Delivery">
  27. <tooltip>
  28. <Tooltip text="The bot will unnote and deliver bones to the client.">
  29. <font>
  30. <Font name="Times New Roman" size="12.0" />
  31. </font>
  32. </Tooltip>
  33. </tooltip>
  34. <font>
  35. <Font name="Times New Roman" size="13.0" />
  36. </font>
  37. </CheckBox>
  38. <CheckBox layoutX="127.0" layoutY="118.0" mnemonicParsing="false" text="Altar Manager">
  39. <font>
  40. <Font name="Times New Roman" size="13.0" />
  41. </font>
  42. <tooltip>
  43. <Tooltip text="The bot will manage the altar, and keep the burners lit." />
  44. </tooltip>
  45. </CheckBox>
  46. <Text layoutX="14.0" layoutY="170.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Enter the Client's Username">
  47. <font>
  48. <Font name="Times New Roman Bold" size="15.0" />
  49. </font>
  50. </Text>
  51. <TextField fx:id="textField" layoutX="14.0" layoutY="181.0" onAction="#TextField" promptText="Client's Username">
  52. <font>
  53. <Font name="Times New Roman" size="13.0" />
  54. </font>
  55. </TextField>
  56. <Text layoutX="14.0" layoutY="235.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Enter the House Owner's Username">
  57. <font>
  58. <Font name="Times New Roman Bold" size="15.0" />
  59. </font>
  60. </Text>
  61. <TextField layoutX="14.0" layoutY="246.0" promptText="House Owner's Username">
  62. <font>
  63. <Font name="Times New Roman" size="13.0" />
  64. </font>
  65. </TextField>
  66. <CheckBox layoutX="16.0" layoutY="278.0" mnemonicParsing="false" text="House Owner is Client?">
  67. <font>
  68. <Font name="Times New Roman" size="11.0" />
  69. </font>
  70. </CheckBox>
  71. <Button fx:id="startScriptButton" layoutX="93.0" layoutY="312.0" mnemonicParsing="false" onAction="#startScriptPressed" prefHeight="42.0" prefWidth="164.0" text="Button" />
  72. </children>
  73. </AnchorPane>
  74. </children>
  75. </VBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement