打印as3中组件的可用方法

发布于 2024-12-29 05:25:03 字数 42 浏览 1 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(3

绝不放开 2025-01-05 05:25:03

您可以使用内置函数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.

断舍离 2025-01-05 05:25:03

您正在寻找的答案是:

for(var prop:String in obj) {
   if(obj[prop] is Function) trace(prop);
}

The answer you're looking for is:

for(var prop:String in obj) {
   if(obj[prop] is Function) trace(prop);
}
戏舞 2025-01-05 05:25:03
for (var f:Function in yourObject) {
    // Do stuff here
}

尝试一下

for (var f:Function in yourObject) {
    // Do stuff here
}

Try that

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