2010-07-30から1日間の記事一覧

MEL入門011 関数に更にfor文を組み合わせる。

下記の全てがスクリプトです。複数選択しまとめてリネームできます。 //ウインドウサイズを指定したものを作成後削除するとウインドウサイズが指定のサイズで作成されます。 string $window = `window -widthHeight 150 100`; setParent ..; showWindow $win…

MEL入門010 関数を使う。

ウインドウを作成し、テキストフィールドを作成します。 window -width 100 -height 70 -title "SELECTNAME"; columnLayout -adjustableColumn true; text -label "Name"-align "center"; textField -editable true NAME; button -command "SelNAME" -h 16 -…