Advertisement
mattysmith22

Tmp

Aug 30th, 2019
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.36 KB | None | 0 0
  1. {
  2.   Children = {
  3.     { Name = "ColourStrip",
  4.       X = "100%,-18",
  5.       Y = 2,
  6.       Type = "Label",
  7.       Text = "Colours        ",
  8.       BackgroundColour = 'cyan',
  9.       Height = 1
  10.     },
  11.     { Name = "CategoryStrip",
  12.       X = "100%, -21",
  13.       Y = 2,
  14.       Type = "Button",
  15.       Text = "Cat",
  16.       Width = 3,
  17.       Height = 1
  18.     },
  19.     { Name = "ButtonNew",
  20.       X = "100%,-1",
  21.       Y = 2,
  22.       Type = "Button",
  23.       Text = "+",
  24.       BackgroundColour = 'green',
  25.       Width = 1,
  26.       Height = 1
  27.     },
  28.     { Name = "ButtonSearch",
  29.       X = "100%,-24",
  30.       Y = 2,
  31.       Text = "s",
  32.       Type = "Button",
  33.       Width = 1
  34.     },
  35.     { Name = "TextBoxSearch",
  36.       X = 2,
  37.       Y = 2,
  38.       Width = "100%,-26",
  39.       Height = 1,
  40.       Type = "TextBox",
  41.       BackgroundColour = 'white',
  42.       TextColour = 'black'
  43.     },
  44.     { Name = "Priorities",
  45.       X = "100%,-8",
  46.       Y = 4,
  47.       Height = 1,
  48.       Type = "Label",
  49.       BackgroundColour = 'grey',
  50.       TextColour = "white",
  51.       Text = "12345"
  52.     },
  53.     { Name = "Headings",
  54.       X = 2,
  55.       Y = 4,
  56.       Text = "P C Item",
  57.       Type = "Label",
  58.       TextColour = "white"
  59.     },
  60.     { Name = "SortPriorityButton",
  61.       X = "100%,-14",
  62.       Y = 4,
  63.       Text = "High",
  64.       Type = "Button",
  65.       BackgroundColour = "grey",
  66.       TextColour = "white",
  67.       Width = 4,
  68.     },
  69.     { Name = "SortPriorityLabel",
  70.       X = "100%,-23",
  71.       Y = 4,
  72.       Type = "Label",
  73.       Text = "Priority",
  74.       TextColour = "white"
  75.     },
  76.     { Name = "SortTimeButton",
  77.       X = "100%,-27",
  78.       Y = 4,
  79.       Type = "Button",
  80.       Text = "New",
  81.       BackgroundColour = "grey",
  82.       TextColour = "white",
  83.       Width = 3
  84.     },
  85.     { Name = "SortTimeLabel",
  86.       X = "100%,-32",
  87.       Y = 4,
  88.       Type = "Label",
  89.       Text = "Time",
  90.       TextColour = "white"
  91.     },
  92.     { Name = "ItemList",
  93.       X = 2,
  94.       Y = 6,
  95.       Width = "100%,-2",
  96.       Height = "100%,-7",
  97.       Type = "ScrollView",
  98.       Children = {
  99.         { Name = "Item1Priority",
  100.           X = 1,
  101.           Y = 1,
  102.           Text = "1",
  103.           Type = "Label",
  104.           BackgroundColour = "red",
  105.           TextColour = "white"
  106.         },
  107.         { Name = "Item1Colour",
  108.           X = 3,
  109.           Y = 1,
  110.           Text = "O",
  111.           Type = "Label",
  112.           BackgroundColour = "green",
  113.           TextColour = "green"
  114.         },
  115.         { Name = "Item1Text",
  116.           X = 5,
  117.           Y = 1,
  118.           Text = "Build a jungle wood farm                ",
  119.           Type = "Label",
  120.           BackgroundColour = "grey",
  121.           TextColour = "white"
  122.         },
  123.         { Name = "Item2Priority",
  124.           X = 1,
  125.           Y = 2,
  126.           Text = "2",
  127.           Type = "Label",
  128.           BackgroundColour = "orange",
  129.           TextColour = "white"
  130.         },
  131.         { Name = "Item2Colour",
  132.           X = 3,
  133.           Y = 2,
  134.           Text = "O",
  135.           Type = "Label",
  136.           BackgroundColour = "red",
  137.           TextColour = "red"
  138.         },
  139.         { Name = "Item2Text",
  140.           X = 5,
  141.           Y = 2,
  142.           Text = "Get more leather                        ",
  143.           Type = "Label",
  144.           BackgroundColour = "lightGrey",
  145.           TextColour = "black"
  146.         }
  147.       }
  148.     }
  149.   },
  150.     BackgroundColour = 'black'  
  151. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement