在Maya中,当我取消选择我运行这两个版本时,我创建了一个texScrollList。
print cmds.textScrollList(“menuName”,si = True,q = True) print cmds.textScrollList(“menuName”,di = True,q = True)
当我从textScrollList中取消选择时,这两个都返回'None'。无论如何都要返回我取消选择的名称?
答案 0 :(得分:0)
我想你想查询选择权吗?如果是这种情况,你可以尝试这样的
def selFunc(ctrlName):
selectedValue = cmds.textScrollList(ctrlName, si=True, q=True)
print selectedValue
cmds.window()
cmds.paneLayout()
cmds.textScrollList( "myControlObj", allowMultiSelection=True,sc="selFunc('myControlObj')",
append=[ "red","greee","blue"],
uniqueTag=["Albert Einstein","Rene Descartes"])
cmds.showWindow()