Ask a Question related to Adobe Photoshop 7, CS, CS2 & CS3, Design and Development.
-
naitsirch79 #1
Embed music file skins...Looking for tute
I am embedding music into my site but I don't want the traditional WMP
embed. I would like to spruce it up with something I can make On Photoshop
or something. I am imagining that you can do it with tables or what not but
was wonder if there was a tute or something that could explain this further.
Also if I embed a file but have it autostart=false will it still load into
the page or no? IF it does how can I get it to not load into the page until
someone presses the play button???
example code EMBED SRC=TheHunted.wma AUTOSTART=true WIDTH=200 HEIGHT=25
LOOP=false
naitsirch79 Guest
-
Proposed CPAN Module: Tk::Canvas::Music (renamed to Tk::Music)
Hi... It's been a while, but I'm getting back to thinking about this Tk::Music module... How do people want this to work... so far we have the... -
Embed Flash file into CFMAIL??
I have a monthly e-newsletter I send out for a client. In the past, it has been working fine, but now I'm trying to send/embed a Flash swf file... -
Can't Embed Tif file
I have linked a CMYK Tif file in my document which I want to use in a Symbol. Of course, I can't use linked artwork in a symbol, so I need to embed... -
Embed WORD file on website
Hi, I followed the same instructions for embedding a WORD doc into a .ppt, but it did not work on my website. Insert, Object, Create from File,... -
Eric Purkalitis #2
Re: Embed music file skins...Looking for tute
I would think it would load into the page and wait to start. I'm not that familiar with embedding media player files.
I would actually recommend doing your sound in flash. You'd have more control over the design of the interface and more people would be able to play it. Not nearly as many people have media player (careful about versions too) as the flash player.
I remember once needing sound on a page and needed something quick and dirty. I ended up making a 1x1px flash file to load it.
Eric Purkalitis Guest
-
Grass Hopper #3
Re: Embed music file skins...Looking for tute
example code EMBED SRC=TheHunted.wma AUTOSTART=true WIDTH=200 HEIGHT=25
LOOP=false
make the AUTOSTART=false
Grass Hopper Guest
-
Grass Hopper #4
Re: Embed music file skins...Looking for tute
and you should include a console as well, so they have stop and play buttons.
for instance:
<embed src="sounds/yoursonghere" autostart=false loop=false volume=120 border=0 height=15 width=51 controls=smallconsole align=absmiddle>
the flash idea is a better one because you don't have to deal with all the different browsers trying to interpret the <embed> tag.
Grass Hopper Guest
-
naitsirch79 #5
Re: Embed music file skins...Looking for tute
Got it....If somebody can make this code better please let me know....I was
wondering about using winamp playlist and MP3 for more user access...
<html>
<head>
<title>Windows Media Player </title>
<script>
function openPlayer()
{
// Created by Aftab Ahmed
//a_kalhoro@yahoo.com
WinMPlayer.URL= "Myplaylist.wpl"
}
</script>
</head>
<body onload="openPlayer()">
<table align=center>
<tr>
<td>
<OBJECT ID="WinMPlayer"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<PARAM name="autoStart" value="False">
</OBJECT>
</td>
</tr>
</table>
</body>
</html>
naitsirch79 Guest
-
dave milbut #6
Re: Embed music file skins...Looking for tute
if you want cross browser support, use both the embed and the object tags.
dave milbut Guest



Reply With Quote

