3dsmax2012以降では、アップデートされているらしく、以下のようにlabelの文字に対して変数を割り当てても、問題なく表示されるのですが・・・。
global testString = "i'm a caption!"
rollout testRollout "test"(
label testLabel testString
)
createdialog testRollout
バージョン2011ではエラー(Syntax error)になってしまうため、以下のようにロールアウトが開いた時にテキストを更新する形で対処する必要があるようです。
global testString = "i'm a caption!"
rollout testRollout "test"(
label testLabel
on testRollout open do ( testLabel.caption = testString )
)
createdialog testRollout
・参考ページ
http://forums.cgsociety.org/archive/index.php/t-42850.html
0 件のコメント:
コメントを投稿