| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- //--- OBJECT WRITE BEGIN ---
- $guiContent = new GuiControl(CreateNewCollectionSetCtrl) {
- position = "0 0";
- extent = "1024 768";
- minExtent = "8 2";
- horizSizing = "right";
- vertSizing = "bottom";
- profile = "ToolsGuiDefaultNonModalProfile";
- visible = "1";
- active = "1";
- tooltipProfile = "GuiToolTipProfile";
- hovertime = "1000";
- isContainer = "1";
- canSave = "1";
- canSaveDynamicFields = "1";
- Enabled = "1";
- new GuiWindowCtrl() {
- text = "Name New Collection Set";
- resizeWidth = "1";
- resizeHeight = "0";
- canMove = "1";
- canClose = "1";
- canMinimize = "0";
- canMaximize = "0";
- canCollapse = "0";
- edgeSnap = "1";
- margin = "0 0 0 0";
- padding = "0 0 0 0";
- anchorTop = "1";
- anchorBottom = "0";
- anchorLeft = "1";
- anchorRight = "0";
- position = "362 334";
- extent = "355 99";
- minExtent = "48 92";
- horizSizing = "center";
- vertSizing = "center";
- profile = "ToolsGuiWindowProfile";
- visible = "1";
- active = "1";
- closeCommand = "Canvas.popDialog(CreateNewCollectionSetCtrl);";
- tooltipProfile = "ToolsGuiToolTipProfile";
- hovertime = "1000";
- isContainer = "1";
- canSave = "1";
- canSaveDynamicFields = "0";
- new GuiButtonCtrl() {
- text = "Select";
- groupNum = "-1";
- buttonType = "PushButton";
- useMouseEvents = "0";
- position = "207 68";
- extent = "71 22";
- minExtent = "8 2";
- horizSizing = "left";
- vertSizing = "top";
- profile = "ToolsGuiButtonProfile";
- visible = "1";
- active = "1";
- command = "Canvas.popDialog(CreateNewCollectionSetCtrl); AssetBrowser.saveCurrentFiltersAsCollection();";
- tooltipProfile = "ToolsGuiToolTipProfile";
- hovertime = "1000";
- isContainer = "0";
- canSave = "1";
- canSaveDynamicFields = "0";
- };
- new GuiButtonCtrl() {
- text = "Cancel";
- groupNum = "-1";
- buttonType = "PushButton";
- useMouseEvents = "0";
- position = "284 68";
- extent = "64 22";
- minExtent = "8 2";
- horizSizing = "left";
- vertSizing = "top";
- profile = "ToolsGuiButtonProfile";
- visible = "1";
- active = "1";
- command = "Canvas.popDialog(CreateNewCollectionSetCtrl);";
- tooltipProfile = "ToolsGuiToolTipProfile";
- hovertime = "1000";
- isContainer = "0";
- canSave = "1";
- canSaveDynamicFields = "0";
- };
- new GuiTextEditCtrl() {
- historySize = "0";
- tabComplete = "0";
- sinkAllKeyEvents = "0";
- password = "0";
- passwordMask = "*";
- maxLength = "1024";
- margin = "0 0 0 0";
- padding = "0 0 0 0";
- anchorTop = "1";
- anchorBottom = "0";
- anchorLeft = "1";
- anchorRight = "0";
- position = "8 38";
- extent = "341 18";
- minExtent = "8 2";
- horizSizing = "width";
- vertSizing = "height";
- profile = "ToolsGuiTextEditProfile";
- visible = "1";
- active = "1";
- tooltipProfile = "ToolsGuiToolTipProfile";
- hovertime = "1000";
- isContainer = "1";
- canSave = "1";
- canSaveDynamicFields = "0";
- internalName="collectionSetName";
- };
- };
- };
- //--- OBJECT WRITE END ---
- function CreateNewCollectionSetCtrl::onWake(%this)
- {
- %this-->collectionSetName.setText("");
- }
|