在根目录重写 addChild() ?
我见过在影片剪辑中覆盖 addChild 的方法,但是您可以在最上层的根级别执行此操作吗?就像在主时间线上覆盖它一样。
I've seen methods for overriding addChild inside of movieclips, but can you do it at the upper-most root level? As in, overriding it on the main timeline.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是你需要做的。首先为您的 FLA 创建一个文档类。在本例中,我将其称为 Main.as:
然后,您需要在 FLA 中设置文档类(查看“属性”面板,未选择任何舞台对象)。
Here's what you need to do. First create a document class for your FLA. In this case, I've called it Main.as:
Then you need to set the document class in your FLA (look at the Property panel with no stage objects selected).
您可以创建自己的 Document 类,并覆盖其中的 addChild 。
You could create your own Document class, and override addChild in it.
您可以在继承 addChild 方法的任何类内部进行重写。示例:
来源:
http://www.ultrashock.com/forum/viewthread/119614/
You can override inside of any class that inherits the addChild method. Example:
Source:
http://www.ultrashock.com/forum/viewthread/119614/