Web Analytics Made Easy -
StatCounter random music script? - CodingForum

Announcement

Collapse
No announcement yet.

random music script?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • random music script?

    im looking for a script where, when u enter the page a random song from my server will play, the songs are in WMA format.

    is there a script for this?

    thanks in advance.

  • #2
    First of all, are you sure WMA files can be used a backgroud sound? If so, make sure you arn users that the format for music may not be supported by them. Not EVERYONE can use WMA.. I do have a script that will load a random song.

    This will possible suport WMV, I am not sure.. I never used it...

    Code:
    <script language="javascript">
    // use this script freely
    // var numsongs stands for the number of songs given
    var numsongs = 5 //replace with any number you want
    day = new Date()
    seed = day.getTime()
    ran = parseInt(((seed - (parseInt(seed/1000,10) * 1000))/10)/100*numsongs
    + 1,10)
     
    if (ran == (5))
    {
    song =("insert file src here")
    words =("input song title here")
    }
    else if (ran == (4))
    {
    song =("insert file src here")
    words =("input song title here")
    }
    else if (ran == (3))
    {
    song =("insert file src here")
    words =("input song title here")
    }
    else if (ran == (2))
    {
    song =("insert file src here")
    words =("input song title here")
    }
    else if (ran == (1))
    {
    song =("insert file src here")
    words =("input song title here")
    }
    
    document.write('<EMBED SRC= "' + song + '" CONTROLS=smallconsole HEIGHT=45 WIDTH=290 AUTOSTART=TRUE LOOP=TRUE VOLUME=35%>')
    document.write('<br>You are listening to ' + words + ' ')
    </SCRIPT>
    I hope that helps... Oh and be sure that numsongs is not higher than the total songs available

    Comment


    • #3
      Well, did it work??? Does anyone else have something that will work in this situation??? Sheesh.. I give a reply and it stops the whole subject

      Comment


      • #4
        sorry sorry

        i havent been able to check up on my email but i did try out our script offline and it did work i am just in the remodeling of my site part... thnx a lot by the way and sorry bout the late reply

        Comment


        • #5
          No problem

          Comment

          Working...
          X