불여우(fire fox)에서도 mp3 듣자 정보
불여우(fire fox)에서도 mp3 듣자
본문
js\common.js 파일 454~461라인을 아래와 같이 바꾸면 됩니다.
rolo님께서 가르쳐 주셨습니다.
js\common.js(454-461):
function obj_movie(src, ids, width, height, autostart)
{
var wh = "";
if (parseInt(width) && parseInt(height))
wh = " width='"+width+"' height='"+height+"' ";
if (!autostart) autostart = false;
return "<embed src='"+src+"' "+wh+" type='application/x-mplayer2' autostart='"+autostart+"'></embed>";
}
이렇게하면 원본소스를 건드려야하는 문제가 발생합니다.
더 좋은 방법이 있으면 한수 가르쳐 주시길 바랍니다.
아니면 다음 버전업에서 적용이 되면 더욱 좋겠구요...... ^^*
rolo님께서 가르쳐 주셨습니다.
js\common.js(454-461):
function obj_movie(src, ids, width, height, autostart)
{
var wh = "";
if (parseInt(width) && parseInt(height))
wh = " width='"+width+"' height='"+height+"' ";
if (!autostart) autostart = false;
return "<embed src='"+src+"' "+wh+" type='application/x-mplayer2' autostart='"+autostart+"'></embed>";
}
이렇게하면 원본소스를 건드려야하는 문제가 발생합니다.
더 좋은 방법이 있으면 한수 가르쳐 주시길 바랍니다.
아니면 다음 버전업에서 적용이 되면 더욱 좋겠구요...... ^^*
추천
0
0
댓글 1개

워... type='application/x-mplayer2'를 추가하니까 잘 되네요. ^^