通过MEL代码调用python对象时出错

时间:2010-06-30 08:56:11

标签: python maya

如何解决这个问题。

Following error occurs from maya. I am doing the following in Filemenu.mel file. this runs at the startup.

python(“import saveCentral_fromPath”); 。 。

全局proc runSaveCentral() {

python("saveCentral_fromPath.saveCentral()");
python("a._first_()");  

}

。 。 。         menuItem -label(“save Central”) - 1             -annotation(“发布:复制到中心区域”)             -command(“runSaveCentral()”)publishItem;

# Error: file: S:/xxxxxxxx/scripts/maya/melTEST/FileMenu.mel line 64: class saveCentral_fromPath has no attribute 'saveCentral'
# Traceback (most recent call last):
#   File "<maya console>", line 1, in <module>
# AttributeError: class saveCentral_fromPath has no attribute 'saveCentral' # 

Brgds,

kNish

1 个答案:

答案 0 :(得分:0)

python("import saveCentral_fromPath");
.
..

global proc runSaveCentral()

{
    python("saveCentral_fromPath.saveCentral()._first_()");
#               filename.classname.functionname
}

.
.
.
menuItem -label ("save Central") -en 1
-annotation ("publish : copy to central area")
-command ("runSaveCentral()") publishItem;