如何啓用或禁用按鈕或更改按鈕在maya mel中的另一個按鈕。 這是我的代碼。Maya Mel:啓用或禁用按鈕或更改另一個按鈕的背景色
global string $btn2;
global proc fun(string $btn){
button -label "button 2" -enable false $btn;
}
window -width 150;
columnLayout -adjustableColumn true;
$btn1 = `button -label "button 1" -c "fun $btn2"`;
$btn2 = `button -label "button 2" -enable true`;
showWindow;
你到目前爲止做了哪些研究。你有到目前爲止寫的任何代碼嗎? – kartikg3 2015-02-08 14:32:38
[mel文檔](http://download.autodesk.com/global/docs/maya2014/en_us/Commands/button.html) – DrHaze 2015-02-09 11:34:54