打印as3中组件的可用方法
我在 as3 中有一个定制按钮,我想打印所有可用的方法。我该怎么做呢?
I have a custom made button in as3, and I would like to print all the methods available for it. How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用内置函数
describeType
来完成此操作。只需传入一个类型,它就会返回一个 XML 对象,该对象不仅包含方法,还包含变量、访问器等。请参阅文档 了解更多信息。You can use the build-in function
describeType
to accomplish this. Just pass in a type and it will return an XML-object containing not only the methods, but also variables, accessors and more. See doc for more information.您正在寻找的答案是:
The answer you're looking for is:
尝试一下
Try that