锌封闭形式

发布于 2024-12-01 23:45:11 字数 250 浏览 3 评论 0原文

我在使用锌的 mdm 类库退出程序时遇到问题。

我尝试过 mdm.Forms.thisForm.close()mdm.Application.exit() 但都没有任何效果。

真令人沮丧!几乎没有任何文档,只是想知道其他人是否有类似的陷阱和锌的经验。

详细信息:

在 Windows 7 上使用 Flash Develop 4.0.2 和 MDM Zinc 3.0

I am having trouble exiting my program with zinc's mdm class libraries.

I've tried mdm.Forms.thisForm.close() and mdm.Application.exit() and neither have any effect.

Quite frustrating! There is little to no documentation, just wondering if anyone else has had similar experience with gotchas and Zinc.

DETAILS:

Using Flash Develop 4.0.2 and MDM Zinc 3.0 on Windows 7

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芸娘子的小脾气 2024-12-08 23:45:11

如果我没记错的话,你需要先初始化 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!");
}

If I remember correctly you need to initialize Zinc before some of its functions will work.

// "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!");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文