在首次运行 Air 应用程序时运行函数

发布于 2024-11-01 09:05:37 字数 66 浏览 0 评论 0原文

我只想在安装后首次在系统上运行air应用程序时调用函数。我可以检查一些东西来确定这一点吗?

提前致谢!

I want to call a function only when the air application is run on a system for the first time after installation. Is there something I can check to determine this?

Thanks in advance!

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

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

发布评论

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

评论(1

稚然 2024-11-08 09:05:37

我认为最好的办法是使用 SharedObject 接口并存储一个值来告诉您已经完成了某些操作。也许是这样的?

var so:SharedObject = SharedObject.getLocal("appName.breadcrumb");
if(!so.data.initialized) {
    doYourStuff();
    so.data.initialized = true;
}

这对你有用吗?

I think the best thing to do is use the SharedObject interface and store a value that tells you that you have done something already. Something like this, perhaps?

var so:SharedObject = SharedObject.getLocal("appName.breadcrumb");
if(!so.data.initialized) {
    doYourStuff();
    so.data.initialized = true;
}

Does that work for you?

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