使用 SharedObject 存储的对象有自己的默认属性吗?可以去掉吗?

发布于 2024-12-25 08:55:28 字数 312 浏览 0 评论 0原文

我有一个对象,其中包含我定义的一些数据,我使用 SharedObject 将其存储在计算机中。当我使用 FlashDevelop SharedObject Reader 查看 .sol 文件时,我注意到对象信息中有一些不是我定义的数据。其中包括:

soundTransform(对象)、buttonMode、hitArea、useHandCursor、tabChildren、mouseChildren、needSoftKeyboard、focusRect 等

这些数据是否可删除,以便我可以减小 .sol 文件的大小?

I have a Object with some data define by me, and I use SharedObject to store it in the computer. When I view the .sol file with FlashDevelop SharedObject Reader, I notice the object info have some data which is not defined by me. Among them are:

soundTransform (object), buttonMode, hitArea, useHandCursor, tabChildren, mouseChildren, needSoftKeyboard,focusRect etc.

Are these data removable so that I could maybe possibly reduce the size of the .sol file?

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

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

发布评论

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

评论(1

深巷少女 2025-01-01 08:55:28

最好创建您自己保存的对象,然后在加载时根据这些属性重建对象。例如;

var myobj:Object = {x:theClip.x, y:theClip.y, ..., ...};

Might be best to create your own object that you save, and then reconstruct the object from those properties when loading. Eg;

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