在首次运行 Air 应用程序时运行函数
我只想在安装后首次在系统上运行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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最好的办法是使用 SharedObject 接口并存储一个值来告诉您已经完成了某些操作。也许是这样的?
这对你有用吗?
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?Does that work for you?