The script below worked at one time but it appears I've messed it up or the
free web hosting sites won't run it. Is the "var currentdate=0" and the other
date stuff messing things up, I don't know what they are doing there. Also the
last two lines, should they be within the begin and end script codes?
<script language=> and </script>
The script is suppose to play midi files on the web page, randomly picking a
midi each time the page is viewed.
On the web page you can see "A BEAUTIFUL MIDI: DebClardeLu.mid" printed
out but there is no sound. If you want to see the page the link is
http://www.europe.faithweb.com
Thanks,
Vern
-------------------------------------------------------------------------
<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - //http://www.geocities.com/ResearchTriangle/1500
var currentdate = 0
var theranmidi = " "
var core = 0
function StringArray (n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
midi = new StringArray(10)
midi[0] = 'BeFurElise.mid'
midi[1] = 'DebClardeLu.mid'
midi[2] = 'miniover.mid'
midi[3] = 'wooden.mid'
midi[4] = '1941G.MID'
midi[5] = 'han_gav.mid'
midi[6] = 'titanic1.mid'
midi[7] = 'DanSugar.mid'
midi[8] = 'titanic2.mid'
midi[9] = 'WHITE.MID'
ran = 60 / midi.length
function ranmidi() {
currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore
theranmidi = midi[core]
return (theranmidi)
}
document.write("A BEAUTIFUL MIDI: <b>"+ranmidi()+"</b><br><br>"
+"<EMBED src="+ranmidi()+" Width=200 Height=55 autostart=true>")
//-->
</script>
<embed src="DanSugar.mid" align="baseline" border="0" width="51" height="15"
controls="smallconsole" autostart="true" loop="true">
============= PCWorks Mailing List =================
Don't see your post? Check our posting guidelines &
make sure you've followed proper posting procedures,
http://pcworkers.com/rules.htm
Contact list owner <[EMAIL PROTECTED]>
Unsubscribing and other changes: http://pcworkers.com
=====================================================