我在使用锌的mdm类库退出程序时遇到了麻烦。
我已经尝试了mdm.Forms.thisForm.close()
和mdm.Application.exit()
,但都没有效果。
非常令人沮丧!几乎没有文档,只是想知道是否有其他人有类似的经验和陷阱。
详情:
在Windows 7上使用Flash Develop 4.0.2和MDM Zinc 3.0
答案 0 :(得分:1)
如果我没记错的话,你需要在它的某些功能运行之前初始化Zinc。
// "this" should be your root display object, but i've found any old display
// object will work just fine.
mdm.Application.init(this, onInit);
function onInit():void {
trace("let's roll!");
}