如何使用 Dreamweaver 将 flash mp3 播放器添加到我的网页

发布于 2024-09-04 15:41:59 字数 106 浏览 6 评论 0原文

我想使用 Dreamweaver cs3 在网页中嵌入一个小型 flash mp3 播放器。这是带有停止和暂停按钮的小播放器。

我该怎么做?

谢谢

I want embed a little flash mp3 player in a webpage page using Dreamweaver cs3. This is the little player with the stop and pause buttons.

How do I do this?

Thanks

Ken

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

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

发布评论

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

评论(2

入怼 2024-09-11 15:41:59

我想使用 Dreamweaver cs3 在网页中嵌入一个小型 flash mp3 播放器。这是带有停止和暂停按钮的小播放器。

你有闪存吗? flash mp3播放器已经创建了吗?您打算将 flash swf 文件放在同一台服务器上还是远程服务器上?

你的问题是:

  • 我不知道如何制作一个flash mp3播放器?
  • 我不知道如何嵌入 flash mp3 播放器?

请澄清。

I want embed a little flash mp3 player in a webpage page using Dreamweaver cs3. This is the little player with the stop and pause buttons.

Do you have Flash? Has the flash mp3 player been created? Are you planning to have the flash swf file on the same server or it's remote?

Is your question:

  • I don't know how to make a flash mp3 player?
  • I don't know how to embed a flash mp3 player?

Please clarify.

陌路终见情 2024-09-11 15:41:59

假设您有 DreamWeaver CS3,并且本地有一个名为

mp3player.swf 的 Flash 文件,位于与 html 文件相同的文件夹中

单击插入 -> 媒体 -> Flash

确保在获取文件时使用与“文档

插入标题”相关的选项,例如 Mp3 播放器,

您将在 html 文件中看到以下内容。

<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','550','height','400','title','Mp3 Player','src','file:///Macintosh HD/Users/phwd/Desktop/mp3player','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','file:///Macintosh HD/Users/phwd/Desktop/mp3player' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="550" height="400" title="Mp3 Player">
    <param name="movie" value="file:///Macintosh HD/Users/phwd/Desktop/mp3player.swf" />
    <param name="quality" value="high" />
    <embed src="file:///Macintosh HD/Users/phwd/Desktop/mp3player.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="550" height="400"></embed>
  </object></noscript>

注意我有

file:///Macintosh HD/Users/phwd/Desktop/mp3player

file:///Macintosh HD/Users/phwd/Desktop /mp3player.swf

在你的情况下它将是

mp3player 和 mp3player.swf

Assuming you have DreamWeaver CS3, and you have a Flash file locally called

mp3player.swf within the same folder as your html file

Click Insert -> Media -> Flash

Make sure when you get your file you use the option relative to Document

Insert a Title say Mp3 Player

you will get the following placed in your html file.

<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','550','height','400','title','Mp3 Player','src','file:///Macintosh HD/Users/phwd/Desktop/mp3player','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','file:///Macintosh HD/Users/phwd/Desktop/mp3player' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="550" height="400" title="Mp3 Player">
    <param name="movie" value="file:///Macintosh HD/Users/phwd/Desktop/mp3player.swf" />
    <param name="quality" value="high" />
    <embed src="file:///Macintosh HD/Users/phwd/Desktop/mp3player.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="550" height="400"></embed>
  </object></noscript>

NOTE that I have

file:///Macintosh HD/Users/phwd/Desktop/mp3player

and

file:///Macintosh HD/Users/phwd/Desktop/mp3player.swf

in your case it will be

mp3player and mp3player.swf

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