创建Dialog Maxscript ???

时间:2015-08-05 14:59:19

标签: dialog maxscript

有人能告诉我这里有什么不对吗?我对max-script有点新手,但为什么这不起作用呢?

尝试(DestroyDialog Run)catch()

首次展示运行“TestCondition”宽度:200高度:250

- 按钮btn_test“测试”位置:[50,50]宽度:75 - spinner spn_check“Checked”fieldwidth:25

CreateDialog Run

1 个答案:

答案 0 :(得分:0)

您缺少卷展栏项目的括号:

try (destroyDialog Run) catch()
rollout Run "TestCondition" width:200 height:250
(
    button btn_test "Test" pos:[50, 50] width:75
    spinner spn_check "Checked" fieldWidth:25
)
createDialog Run