이올라스하고 마이크로소프트하고 재판해서 마이크로 소프트가 지는바람에
익스플로러에 있는 저작권 걸리는 태그가 전부 패치되었다..ㅡㅡ;
자주 사용하는 <embed> 태그도..
그래서 swf 파일을 그냥 태그에 쓰면 사용자가 활성화를 시켜줘야하는데
자동으로 되게하는 방법을 알게되서 포스팅한다~~
자바스크립트를 사용하는 방법인데
flash.js 라는 자바스크립트를 하나 만들어야 한다.
거기에 들어가는 내용은 아래와 같다.
function open_flash(src, width, height){
document.write("<object data='"+src+"' width='"+width+"' height='"+height+"' type='application/x-shockwave-flash'>");
document.write("<param name='movie' value='"+src+"' width='"+width+"' height='"+height+"' />");
document.write("<param name='wmode' value='transparent'>");
document.write("</object>");
}
document.write("<object data='"+src+"' width='"+width+"' height='"+height+"' type='application/x-shockwave-flash'>");
document.write("<param name='movie' value='"+src+"' width='"+width+"' height='"+height+"' />");
document.write("<param name='wmode' value='transparent'>");
document.write("</object>");
}
그리고 <html> 페이지에다가
<script type="text/javascript" src="flash.js"></script>
라고 헤더(<head></head>) 사이에 써준뒤에
<body>에서는
<script type="text/javascript">open_flash("swf의 경로", 가로길이, 세로길이);</script>
이런식으로 써주면 된다.
모르시겠는분은 댓글을 달아주세용...^^;
'개발관련 > 웹개발' 카테고리의 다른 글
JSON 제길슨과 친해지자(1) (0) | 2008.04.08 |
---|---|
window.open 속성 (1) | 2008.04.01 |
탭 순서 설정하기 (1) | 2008.03.26 |
브라우저 구별하는 스크립트 (0) | 2008.03.24 |
버튼 클릭했을때 클립보드에 내용 복사하기 (1) | 2008.03.18 |