Look the page http://inuyasha.drivehq.com/music/home.htm
Here, the function
function showPlayer()
{
if(m_type==0)
{
document.writeln(" <object classid=\"clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6\" id=\"PlayerObj\" ");
document.writeln(" width=\""+m_width+"\" height=\""+m_height+"\">");
document.writeln(" <param name=\"url\" value=\""+m_url+"\">");
document.writeln(" <param name=\"rate\" value=\"1\">");
document.writeln(" <param name=\"balance\" value=\"0\">");
document.writeln(" <param name=\"currentPosition\" value=\"0\">");
document.writeln(" <param name=\"playCount\" value=\"1\">");
document.writeln(" <param name=\"autoStart\" value=\"-1\">");
document.writeln(" <param name=\"volume\" value=\"100\">");
document.writeln(" <param name=\"currentMarker\" value=\"0\">");
document.writeln(" <param name=\"invokeURLs\" value=\"-1\">");
document.writeln(" <param name=\"stretchToFit\" value=\"-1\">");
document.writeln(" <param name=\"windowlessVideo\" value=\"0\">");
document.writeln(" <param name=\"enabled\" value=\"-1\">");
document.writeln(" <param name=\"enableContextMenu\" value=\"0\">");
document.writeln(" <param name=\"fullScreen\" value=\"0\">");
document.writeln(" <param name=\"enableErrorDialogs\" value=\"0\">");
document.writeln(" <\/object>");
}
else
{
document.writeln(" <object classid=\"clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\" id=\"PlayerObj\"");
document.writeln(" width=\""+m_width+"\" height=\""+m_height+"\">");
document.writeln(" <param name=\"SRC\" value=\""+m_url+"\">");
document.writeln(" <param name=\"AUTOSTART\" value=\"0\">");
document.writeln(" <param name=\"SHUFFLE\" value=\"0\">");
document.writeln(" <param name=\"PREFETCH\" value=\"0\">");
document.writeln(" <param name=\"NOLABELS\" value=\"-1\">");
document.writeln(" <param name=\"CONTROLS\" value=\"controlpanel,statusbar\">");
document.writeln(" <param name=\"LOOP\" value=\"0\">");
document.writeln(" <param name=\"NUMLOOP\" value=\"0\">");
document.writeln(" <param name=\"CENTER\" value=\"0\">");
document.writeln(" <param name=\"MAINTAINASPECT\" value=\"0\">");
document.writeln(" <\/object>");
}
}
I needn't Windows Media Player, But if I delete the red code, the function does not work. I couldn't find anything wrong.[/url]
Here, the function
function showPlayer()
{
if(m_type==0)
{
document.writeln(" <object classid=\"clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6\" id=\"PlayerObj\" ");
document.writeln(" width=\""+m_width+"\" height=\""+m_height+"\">");
document.writeln(" <param name=\"url\" value=\""+m_url+"\">");
document.writeln(" <param name=\"rate\" value=\"1\">");
document.writeln(" <param name=\"balance\" value=\"0\">");
document.writeln(" <param name=\"currentPosition\" value=\"0\">");
document.writeln(" <param name=\"playCount\" value=\"1\">");
document.writeln(" <param name=\"autoStart\" value=\"-1\">");
document.writeln(" <param name=\"volume\" value=\"100\">");
document.writeln(" <param name=\"currentMarker\" value=\"0\">");
document.writeln(" <param name=\"invokeURLs\" value=\"-1\">");
document.writeln(" <param name=\"stretchToFit\" value=\"-1\">");
document.writeln(" <param name=\"windowlessVideo\" value=\"0\">");
document.writeln(" <param name=\"enabled\" value=\"-1\">");
document.writeln(" <param name=\"enableContextMenu\" value=\"0\">");
document.writeln(" <param name=\"fullScreen\" value=\"0\">");
document.writeln(" <param name=\"enableErrorDialogs\" value=\"0\">");
document.writeln(" <\/object>");
}
else
{
document.writeln(" <object classid=\"clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\" id=\"PlayerObj\"");
document.writeln(" width=\""+m_width+"\" height=\""+m_height+"\">");
document.writeln(" <param name=\"SRC\" value=\""+m_url+"\">");
document.writeln(" <param name=\"AUTOSTART\" value=\"0\">");
document.writeln(" <param name=\"SHUFFLE\" value=\"0\">");
document.writeln(" <param name=\"PREFETCH\" value=\"0\">");
document.writeln(" <param name=\"NOLABELS\" value=\"-1\">");
document.writeln(" <param name=\"CONTROLS\" value=\"controlpanel,statusbar\">");
document.writeln(" <param name=\"LOOP\" value=\"0\">");
document.writeln(" <param name=\"NUMLOOP\" value=\"0\">");
document.writeln(" <param name=\"CENTER\" value=\"0\">");
document.writeln(" <param name=\"MAINTAINASPECT\" value=\"0\">");
document.writeln(" <\/object>");
}
}
I needn't Windows Media Player, But if I delete the red code, the function does not work. I couldn't find anything wrong.[/url]
