Flash CS4 的 AS3 调试器中有监视列表吗?
Flash CS4 中的 AS3 调试器中是否隐藏了监视列表?
很抱歉在这里问这样一个简单的问题 - 我确实花了一段时间先在网上浏览了一下。在 AS2 调试器中查找监视列表要容易得多。
谢谢, 担
Is a watch list hidden away somewhere in the AS3 debugger in Flash CS4?
Sorry for asking a simple question like this here - I did spend a while looking around the net first. It's much easier to find the watch list in the AS2 debugger.
Thanks,
Dan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AS3 以后,就不再有监视列表了。 Adobe Livedoc 建议使用具有 setter 和 getter 的代理模式。
下面是一个与监视对象执行相同操作并且比代理更易于使用的类:
_number
变量和变量类型可以替换为所需的任何类型。用法:
Whis AS3, there is no more watch list. Adobe Livedoc suggests to use the Proxy pattern with setter and getter.
Here is a class that does the same as the watch object and is easier to use than the proxy:
The
_number
variable and variable type can be replaced by whatever type is needed.The usage: