| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //--- OBJECT WRITE BEGIN ---
- %guiContent = new GuiControl(MessagePopupDlg) {
- profile = "GuiDefaultProfile";
- horizSizing = "width";
- vertSizing = "height";
- position = "0 0";
- extent = "640 480";
- minExtent = "8 8";
- visible = "1";
- helpTag = "0";
- new GuiWindowCtrl(MessagePopFrame) {
- profile = "ToolsGuiWindowProfile";
- horizSizing = "center";
- vertSizing = "center";
- position = "170 175";
- extent = "300 92";
- minExtent = "48 92";
- visible = "1";
- helpTag = "0";
- maxLength = "255";
- resizeWidth = "1";
- resizeHeight = "1";
- canMove = "1";
- canClose = "1";
- text = "";
- canMinimize = "0";
- canMaximize = "0";
- minSize = "50 50";
- new GuiMLTextCtrl(MessagePopText) {
- profile = "ToolsGuiMLTextProfile";
- horizSizing = "center";
- vertSizing = "bottom";
- position = "32 39";
- extent = "236 24";
- minExtent = "8 8";
- visible = "1";
- helpTag = "0";
- lineSpacing = "2";
- allowColorChars = "0";
- maxChars = "-1";
- };
- };
- };
- //--- OBJECT WRITE END ---
|