HTML 中的目标如何在 Adob​​e Flash Player 中打开

发布于 2024-11-08 12:15:14 字数 215 浏览 5 评论 0原文

在这里,我正在为使用 Flash 动画的演示文稿创建 HTML 菜单页。我正在使用这段代码:

<a href="url" target="_blank></a>

现在,正如您所见, target="_blank" 打开一个新的 Internet Explorer 窗口。我想要做的是将演示文稿打开到 SWF 窗口。这可能吗?

Here I was creating an HTML menupage for a presentation that uses flash animations. I am using this code:

<a href="url" target="_blank></a>

Now as you seem the target="_blank" opens a new Internet explorer window. What I want to do is to open my presentations into a SWF window. Is that possible?

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

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

发布评论

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

评论(1

草莓酥 2024-11-15 12:15:14

我希望它在 Adob​​e Flash 中打开
玩家

如果没有目标 SWF 的支持,则无法完成此操作。一种可能性是:

  • 使所有此类链接都指向将打开它们的同一个 SWF:href="player.swf"
  • 向 SWF 的 url 添加参数以确定要显示的内容:
  • SWF 中的 href="player.swf?pageId=123" ,获取参数并加载该内容。

I want it to open in Adobe Flash
Player

This can't be done without support of target SWF. One possibility is:

  • make all such link point to same SWF that will open them: href="player.swf"
  • add parameters to url for SWF to determine what content to show: href="player.swf?pageId=123"
  • in SWF, get parameters and load that content.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文