我该怎么做?我查看了Maya文档,我所能看到的只是命令refreshAE
和updateAE
,但它们不能完成我需要的工作。
答案 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;
}
}
修改更新的脚本以包含标签布局的全局名称