如何编写 代码?在html中由flash按钮调用?
我是编程新手,正在尝试使用闪存按钮打开链接。我将 .swf 文件嵌入到 html 中,并用 a href 标签将其包围,如下所示:
<a href="http://www.yahoo.com/submit.php?url=">
<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="file:///c:/users/joe/desktop/projects/oRBsun.swf" width="550" height="400">
</embed>
</object>
</a>
简单,但不起作用。那么...我该如何编写脚本来完成看似简单的任务呢?
I am new to programming and am trying to use a flash button to open a link. I embeded the .swf file in html and surround it with the a href tags as follows:
<a href="http://www.yahoo.com/submit.php?url=">
<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="file:///c:/users/joe/desktop/projects/oRBsun.swf" width="550" height="400">
</embed>
</object>
</a>
Easy, but does not work. So...how would I write script for what seems like an easy task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能在 HTML 中的 swf 文件周围使用该标记。
如果您使用的是 ActionScript 2.0,则可以使用 Flash 中的 getURL() 函数。
右键单击按钮(您在 Flash 中创建),然后单击“操作”。
在这里你会找到 getURL() 函数
you can´t use the tag around a swf file in HTML.
If you are using ActionScript 2.0 you could use the getURL() function in Flash.
Right-Click on the Button (you create in Flash) then click on "Actions".
Here you will find the getURL() function