Web Hosting Talk







View Full Version : bottom browser mp3 player


bambinou
02-16-2010, 02:35 PM
Hi All,

I have no idea if you have ever seen this on websites but I am looking for an example of an mp3 player that stay at the bottom of your browser, away from everything.

Do you have a script of just a site demo that uses this please?

Thank you so much,


BamBam

iservercenter
02-16-2010, 09:58 PM
I would recommend finding some JavaScript code that automatically keeps it at the bottom of the page. It would be a matter of finding an MP3 player that fits the look of your website, then finding the appropriate code to keep the player at the bottom of the user's browser.

kjsrs
02-17-2010, 12:24 AM
The problem with just adding a javascript player to the bottom of the page, is that every time you change pages, the player starts over.

Your best bet is to use frames, with your main page in the top frame and the player in a bottom frame. Simple and easy (but be sure to hide the border with "frameborder=0" !).

WebhostGIANT-Rob
02-17-2010, 04:40 AM
Try to do the search for the such web application.
I think that must be paid one. I have never met such web applications free of charge...

Vetinari
02-17-2010, 08:41 AM
Try something like that and read about position: fixed for IE ;-)

<html>
<head>
</head>
<body style="margin: 0px 0px 0px 0px;">

bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>
bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>
bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>bleeee<br>

<script type='text/javascript' src='http://www.longtailvideo.com/jw/embed/swfobject.js'></script>
<div id='mediaspace' style="position: fixed; bottom: 0px; width: 100%;">This text will be replaced by mp3 player</div>
<script type='text/javascript'>
var so = new SWFObject('http://www.longtailvideo.com/support/player.swf','ply','100%','24','9','#ffffff');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://194.71.109.51:8002/;stream.nsv&type=sound&autostart=true');
so.addVariable('duration','999999');
so.write('mediaspace');
</script>

</body>
</html>

mehboobashraf
02-17-2010, 09:58 AM
Vetinari code should work for you!! Nice job!!

bambinou
02-17-2010, 02:13 PM
LOL NICE ONE!
The funny thing is that I use the longtail player as well!

Thanks,

BamBam