flash as2:如何在隐藏舞台的同时创建弹出警报?

发布于 2024-08-17 17:44:30 字数 189 浏览 10 评论 0原文

我创建了一个主 swf 应用程序,用于加载其他 swf 文件以使用它们的类(使用 getUrl())。 我希望这些 swf 文件能够在发生错误时输出弹出警报消息,而不更改主 swf 文件。我该怎么办?

我加载的外部 swf 文件有一个隐藏阶段,不允许我查看任何内容或看到来自它们的任何消息。

使用adobe flash,动作脚本2。

I've created a main swf application that loads other swf files to use their classes (using getUrl()).
i would like that these swf files would output popup alert messages when errors occur without changing the main swf file. how can i do so ?

the external swf files that i load got a hidden stage which disallows me from viewing anything or seeing any message from them.

Using adobe flash, Action Script 2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

伤感在游骋 2024-08-24 17:44:30

如果您的 swf 嵌入在 HTML 页面中,您可以尝试:

message = "This is my error message text";
getURL("javascript:alert('"+message+"')", '');

If your swf is embedded in an HTML page, you could try:

message = "This is my error message text";
getURL("javascript:alert('"+message+"')", '');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文