묻고답하기
멀티미디어컴포넌트 네비게이션바에 대한 질문입니다.
2008.06.22 01:54
flv파일을 재생시 플래이어 밑에 재생바(네비게이션)을 오토플래이처럼 체크박스로 처리해서
나오게도 했다가 안나오게도 했다가 하고싶습니다.
제 나름대로 생각은
common/js/common.js 파일에서 shownavigation=false 이 코드를 flashvars부분에 추가해주면 되는데..
원래 이렇게 되있는데
} else if(/\.flv/i.test(src)) {
html = "<embed src=\""+request_uri+"common/tpl/images/flvplayer.swf\" allowfullscreen=\"true\" menu=\"false\" autostart=\""+auto_start+"\" width=\""+width+"\" height=\""+height+"\" flashvars=\"&file="+src+"&width="+width+"&height="+height+"&autostart="+auto_start+"\" />";
이렇게
} else if(/\.flv/i.test(src)) {
html = "<embed src=\""+request_uri+"common/tpl/images/flvplayer.swf\" allowfullscreen=\"true\" menu=\"false\" autostart=\""+auto_start+"\" width=\""+width+"\" height=\""+height+"\" flashvars=\"&file="+src+"&width="+width+"&height="+height+"&autostart="+auto_start+"
&shownavigation=false\" />";
추가해서 필요할때마다 코드를 true나 false로 수정해서 사용중입니다.
그런데 추가한 코드부분을 shownavigation="+show_navigation+" 이렇게 고쳤을경우
어떤파일에 어떻게 수정해야 체크박스로 처리되는지 알려주시면 감사드립니다.