删除 SharedObject 首选项
我已经开发了一个 ActionScript 3.0 for Adobe Air 应用程序(它将在 Blackberry Playbook 上运行)。
这个应用程序有一些错误,我已经进行了更新。
当用户安装新版本时,我想删除以前的用户数据。
我怎样才能做到这一点?
I've developed an ActionScript 3.0 for Adobe Air application (it will run on Blackberry Playbook).
This app has some bugs and I've made an update.
When user install the new version I want to delete previous user data.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在共享对象中放置一个属性来表示您的版本号,并且在检查数据对象时,如果未找到该属性或者该属性来自早期版本,您就知道删除该数据对象并创建一个新的。
You could put a property in the shared object to represent your version number, and when checking the data object, if the property is not found or is from an earlier version you know to delete the data object and create a new one.