帮助解决 AS3 问题
我一直在寻找,但找不到任何可以解决我的问题的东西。
我是 AS3 的新手,以前在 AS2 中很容易做到这一点。
我正在构建一个网站,我希望每次他们单击不同的菜单链接时,菜单框都会关闭和打开,同时它会在其中加载不同的 swf。
如果有人可以帮助我,我曾经使用过这个变量并在输入框架中使用,但现在在 AS3 中我不知道。
谢谢,任何建议都会有所帮助
ive been looking and i cant find anything that solves my issue.
Im new in AS3 and i used to do this really easy in AS2.
Im building a website and i want that every time they click in a different menu link the menu box closes and opens and at the same time it loads a different swf inside.
Please if someone can help me i used to this this with variable and on enter frame but now in AS3 i have no idea.
Thanks and any advice will help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论如何,我不是 100% 确定同时关闭和打开是什么意思:
这是您用来加载 SWF 的代码:
只需将 loadSWF("your_file_here") 放入按钮单击代码中即可。如果要将 SWF 添加到某个容器,只需在 addChild(loader) 前面指定即可。例如 myMovieClip.addChild(loader);
希望这有帮助。
I'm not 100% sure what you mean by closes and opens at the same time, anyways:
Here is the code you would use to load an SWF:
Just put loadSWF("your_file_here") into your button click code. If you want to add the SWF to a certain container, just specify that in front of addChild(loader). eg myMovieClip.addChild(loader);
Hope this helps.