如何控制在 AS2 中使用 loadclip() 加载的影片剪辑?
这是在 AS2 中。我正在使用 loadclip 函数加载外部 AS2 swf。
但我不知道如何调用它的 gotoAndPlay 或 stop 函数。我如何参考它们?
当我跟踪加载的文件时,它说
_level0.mcContainer.instance42
对象路径总是随着每次加载而变化,就像现在是instance42,有时它会变成instance7或instance10。
This is in AS2. I'm loading an external AS2 swf using the loadclip function.
But I don't know how to call its gotoAndPlay or stop functions. How do I reference to them?
When I trace the loaded file it says
_level0.mcContainer.instance42
The object path always varies every load like now it's instance42 sometimes it becomes instance7 or instance10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。我错了。 instance42 指加载的 swf 内的匿名实例。加载后,加载的剪辑会替换容器影片剪辑,因此我可以使用 mcContainer 引用加载的 swf。
Ok. I was wrong. instance42 refers to the anonymous instances inside the loaded swf. upon loading the loaded clip replaces the container movieclip, hence I can refer to the loaded swf using mcContainer.