messagePopup.ed.gui 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //--- OBJECT WRITE BEGIN ---
  2. %guiContent = new GuiControl(MessagePopupDlg) {
  3. profile = "GuiDefaultProfile";
  4. horizSizing = "width";
  5. vertSizing = "height";
  6. position = "0 0";
  7. extent = "640 480";
  8. minExtent = "8 8";
  9. visible = "1";
  10. helpTag = "0";
  11. new GuiWindowCtrl(MessagePopFrame) {
  12. profile = "ToolsGuiWindowProfile";
  13. horizSizing = "center";
  14. vertSizing = "center";
  15. position = "170 175";
  16. extent = "300 92";
  17. minExtent = "48 92";
  18. visible = "1";
  19. helpTag = "0";
  20. maxLength = "255";
  21. resizeWidth = "1";
  22. resizeHeight = "1";
  23. canMove = "1";
  24. canClose = "1";
  25. text = "";
  26. canMinimize = "0";
  27. canMaximize = "0";
  28. minSize = "50 50";
  29. new GuiMLTextCtrl(MessagePopText) {
  30. profile = "ToolsGuiMLTextProfile";
  31. horizSizing = "center";
  32. vertSizing = "bottom";
  33. position = "32 39";
  34. extent = "236 24";
  35. minExtent = "8 8";
  36. visible = "1";
  37. helpTag = "0";
  38. lineSpacing = "2";
  39. allowColorChars = "0";
  40. maxChars = "-1";
  41. };
  42. };
  43. };
  44. //--- OBJECT WRITE END ---