Maya MEL命令用于将焦点设置到“属性编辑器”(Attribute Editor)中的特定选项卡

时间:2013-05-29 07:32:01

标签: maya mel

我该怎么做?我查看了Maya文档,我所能看到的只是命令refreshAEupdateAE,但它们不能完成我需要的工作。

1 个答案:

答案 0 :(得分:1)

这是一种做法。该过程在Maya 2009和2013中进行了测试。

//  switch the tab by name string, note tab must be present 

global proc switchAEtoTab(string $name ){
    global string $gAETabLayoutName;
    string $tabs[] = `tabLayout -q -tabLabelIndex $gAETabLayoutName`;
    for ($i=0;$i<size($tabs);$i++){
       if ($tabs[$i]==$name)
          tabLayout -e -selectTabIndex ($i+1) $gAETabLayoutName; 
    }
}

修改更新的脚本以包含标签布局的全局名称