holodoctor1
06-19-2004, 03:32 AM
Hi,
I really, really need help increasing the volume of the mp3's that play on my webpage. I know they can be increased because when I right click on the embedded windows media player, i have the choice to increase volume.
Could someone give me a snippet of javascript that increases the volume to either the maximum, or something like 200% above normal.
Thanks!
here's the random mp3 code I’m using. any help is greatly appreciated!
<SCRIPT>
<!--developed by A1 javascripts-http://www.A1javascripts.com -Please keep these lines intact if using this random midi script-->
var nummidi = 5
day = new Date()
seed = day.getTime()
ran = parseInt(((seed - (parseInt(seed/1000,10) * 1000))/10)/100*nummidi + 1,10)
if (ran == (1))
mp3=("www.song1.com")
if (ran == (2))
mp3=("www.song2.com")
if (ran == (3))
mp3=("www.song3.com")
if (ran == (4))
mp3=("www.song4.com")
if (ran == (5))
mp3=("www.song5.com")
document.write('<EMBED SRC= "' + mp3 + '" controller=TRUE align=left height=24 width=35 Autostart=true hidden=false loop=true>')
</script>
I really, really need help increasing the volume of the mp3's that play on my webpage. I know they can be increased because when I right click on the embedded windows media player, i have the choice to increase volume.
Could someone give me a snippet of javascript that increases the volume to either the maximum, or something like 200% above normal.
Thanks!
here's the random mp3 code I’m using. any help is greatly appreciated!
<SCRIPT>
<!--developed by A1 javascripts-http://www.A1javascripts.com -Please keep these lines intact if using this random midi script-->
var nummidi = 5
day = new Date()
seed = day.getTime()
ran = parseInt(((seed - (parseInt(seed/1000,10) * 1000))/10)/100*nummidi + 1,10)
if (ran == (1))
mp3=("www.song1.com")
if (ran == (2))
mp3=("www.song2.com")
if (ran == (3))
mp3=("www.song3.com")
if (ran == (4))
mp3=("www.song4.com")
if (ran == (5))
mp3=("www.song5.com")
document.write('<EMBED SRC= "' + mp3 + '" controller=TRUE align=left height=24 width=35 Autostart=true hidden=false loop=true>')
</script>