Advertisement
FanHamMer

Untitled

Jul 31st, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. GUIEditor = {
  2. memo = {},
  3. button = {},
  4. window = {},
  5. tab = {},
  6. checkbox = {},
  7. label = {},
  8. tabpanel = {},
  9. }
  10. GUIEditor.window[1] = guiCreateWindow(427, 300, 457, 407, "", false)
  11. guiWindowSetSizable(GUIEditor.window[1], false)
  12.  
  13. GUIEditor.button[1] = guiCreateButton(10, 355, 212, 42, "", false, GUIEditor.window[1])
  14.  
  15. GUIEditor.label[2] = guiCreateLabel(73, 10, 65, 15, "Autorization", false, GUIEditor.button[1])
  16. guiLabelSetHorizontalAlign(GUIEditor.label[2], "center", false)
  17. guiLabelSetVerticalAlign(GUIEditor.label[2], "center")
  18.  
  19. GUIEditor.button[2] = guiCreateButton(232, 356, 215, 41, "", false, GUIEditor.window[1])
  20.  
  21. GUIEditor.label[3] = guiCreateLabel(76, 10, 63, 15, "Registration", false, GUIEditor.button[2])
  22. guiLabelSetHorizontalAlign(GUIEditor.label[3], "center", false)
  23. guiLabelSetVerticalAlign(GUIEditor.label[3], "center")
  24.  
  25. GUIEditor.label[4] = guiCreateLabel(20, 227, 57, 22, "Nickname", false, GUIEditor.window[1])
  26. guiSetFont(GUIEditor.label[4], "default-bold-small")
  27. guiLabelSetHorizontalAlign(GUIEditor.label[4], "center", false)
  28. guiLabelSetVerticalAlign(GUIEditor.label[4], "center")
  29. GUIEditor.label[5] = guiCreateLabel(20, 282, 56, 20, "Password", false, GUIEditor.window[1])
  30. guiSetFont(GUIEditor.label[5], "default-bold-small")
  31. guiLabelSetHorizontalAlign(GUIEditor.label[5], "center", false)
  32. guiLabelSetVerticalAlign(GUIEditor.label[5], "center")
  33. GUIEditor.memo[6] = guiCreateMemo(102, 222, 307, 32, "", false, GUIEditor.window[1])
  34. GUIEditor.memo[7] = guiCreateMemo(102, 276, 307, 31, "", false, GUIEditor.window[1])
  35. GUIEditor.label[6] = guiCreateLabel(119, 92, 221, 59, "PICTURE", false, GUIEditor.window[1])
  36. guiSetFont(GUIEditor.label[6], "sa-header")
  37. guiLabelSetHorizontalAlign(GUIEditor.label[6], "center", false)
  38. guiLabelSetVerticalAlign(GUIEditor.label[6], "center")
  39. GUIEditor.checkbox[1] = guiCreateCheckBox(279, -5522, 154, 608, "", false, false, GUIEditor.window[1])
  40. GUIEditor.tabpanel[1] = guiCreateTabPanel(636, 57, 0, 316, false, GUIEditor.window[1])
  41.  
  42. GUIEditor.tab[1] = guiCreateTab("Tab", GUIEditor.tabpanel[1])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement