Embed music file skins...Looking for tute

Ask a Question related to Adobe Photoshop 7, CS, CS2 & CS3, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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,...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139