dzhax Posted October 9, 2009 Report Share Posted October 9, 2009 (edited) I have this code being used as a popup <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html> <head> <title>Dzhax Radio - Web Player</title> </head> <body style="background-color: black; margin: auto;"> <object id = "audio1" classid = "clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" height = "105" width = "378"> <param name = "controls" value = "All" /> <param name = "console" value = "Clip1" /> <param name = "_ExtentX" value = "10001" /> <param name = "_ExtentY" value = "2619" /> <param name = "AUTOSTART" value = "0" /> <param name = "SHUFFLE" value = "0" /> <param name = "PREFETCH" value = "0" /> <param name = "NOLABELS" value = "0" /> <param name = "LOOP" value = "0" /> <param name = "NUMLOOP" value = "0" /> <param name = "CENTER" value = "0" /> <param name = "MAINTAINASPECT" value = "0" /> <param name = "BACKGROUNDCOLOR" value = "#ffffff" /> <param name = "SRC" value = "http://arcane-arena.com:8000" /> <embed type = "audio/x-pn-realaudio-plugin" console = "Clip1" controls = "All" height = "105" width = "378" autostart = "false" /> </object></body> It works no problem in IE but when I load it in firefox, all it does is sit there. It will not play the music.I know the embed tag is deprecated but I could not find a different way to do it. Edited October 9, 2009 by dzhax Link to comment Share on other sites More sharing options...
dsonesuk Posted October 9, 2009 Report Share Posted October 9, 2009 you have not included the src of the file in the embed?example<embed type="audio/x-pn-realaudio-plugin" console="Clip1" controls="All" height="105" width="378" autostart="false" src="http://arcane-arena.com:8000"></embed> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now