帮助解决 AS3 问题

发布于 2024-11-02 09:48:46 字数 211 浏览 1 评论 0原文

我一直在寻找,但找不到任何可以解决我的问题的东西。

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

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

发布评论

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

评论(1

未央 2024-11-09 09:48:46

无论如何,我不是 100% 确定同时关闭和打开是什么意思:

这是您用来加载 SWF 的代码:

function loadSWF(url:String):void
{
    var req:URLRequest = new URLRequest(url);
    var loader:Loader = new Loader();

    loader.load(req);

    addChild(loader);
}

loadSWF("http://projectavian.com/projects/swf/what_in_space.swf"); //example

只需将 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:

function loadSWF(url:String):void
{
    var req:URLRequest = new URLRequest(url);
    var loader:Loader = new Loader();

    loader.load(req);

    addChild(loader);
}

loadSWF("http://projectavian.com/projects/swf/what_in_space.swf"); //example

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.

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