Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. # UI properties for ExitDialog window
  2.  
  3. <Begin>
  4.  
  5. # Images ------------------------------------------------------------------------------------------------
  6.  
  7.  
  8. # Strings -----------------------------------------------------------------------------------------------
  9.  
  10. <Begin><SetSharedProperties stringDir = "UIText" stringTable = 228>
  11.  
  12. <DefineString "ReLoginButtonTooltip" stringIndex = 1>
  13. <DefineString "ExitButtonTooltip" stringIndex = 2>
  14. <DefineString "CancelButtonTooltip" stringIndex = 3>
  15. <DefineString "TextTitle" stringIndex = 4>
  16. <DefineString "TextMessage" stringIndex = 5>
  17. <DefineString "TextReLoginButton" stringIndex = 6>
  18. <DefineString "TextExitButton" stringIndex = 7>
  19. <DefineString "TextCancelButton" stringIndex = 8>
  20.  
  21. <End>
  22.  
  23. # Window Size -------------------------------------------------------------------------------------------
  24.  
  25. <SetControlProperties "DialogSize" size=(380,180)>
  26.  
  27. # Buttons -----------------------------------------------------------------------------------------------
  28.  
  29. <Begin>
  30.  
  31. <SetSharedProperties
  32.  
  33. font = 10
  34. textColor = (255,249,157)
  35. textColorSelected = (0,243,247)
  36. textColorHighlighted = (255,255,255)
  37. textColorDisabled = (100,100,100)
  38. textButton = 1
  39. size = (100,50)
  40. >
  41.  
  42. <AddButton "ReLoginButton" id=1 position=(30,120) text="TextReLoginButton" tooltip = "ReLoginButtonTooltip" >
  43. <AddButton "ExitButton" id=2 position=(140,120) text="TextExitButton" tooltip = "ExitButtonTooltip" >
  44. <AddButton "CancelButton" id=3 position=(251,120) text="TextCancelButton" tooltip = "CancelButtonTooltip" >
  45.  
  46. <End>
  47.  
  48. # Text --------------------------------------------------------------------------------------------------
  49.  
  50. <AddText "TitleText"
  51.  
  52. id = 4
  53. position = (10,6)
  54. size = (360,12)
  55. font = 10
  56. color = (255,249,157)
  57. alignment = 3
  58. opaque = 0
  59. wrapped = 1
  60. fittext = 1
  61. text = "TextTitle"
  62. >
  63.  
  64. <AddText "MessageText"
  65.  
  66. id = 5
  67. position = (10,48)
  68. size = (360,60)
  69. font = 11
  70. color = (255,249,157)
  71. alignment = 3
  72. opaque = 0
  73. wrapped = 1
  74. fittext = 1
  75. text = "TextMessage"
  76. >
  77.  
  78.  
  79. <End>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement