플레시 swf에 뜨는 에러...
페이지 정보
본문
플레시 메뉴 및 이미지에 드는 회색 네모난 백스때문에 죽겠습니다.ㅡ.ㅡ;;
인터넷에서 돌아다니는 패치 방법을 따라서 해 보아도 되질 않네요.ㅡ.ㅡ
연후아빠님께서 더 좋은 것이나 방법좀 공유하여 주세요.ㅡ.ㅡ
댓글목록
제로님의 댓글의 댓글
제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일
---------------------------------------------------------------------view_obj.js 파일생성
function flash_movie(src, ids, width, height, wmode)
{
var wh = "";
if (parseInt(width) && parseInt(height))
wh = " width='"+width+"' height='"+height+"' ";
return "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' "+wh+" id="+ids+"><param name=wmode value="+wmode+"><param name=movie value="+src+"><param name=quality value=high><embed src="+src+" quality=high wmode="+wmode+" type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' "+wh+"></embed></object>";
}
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+" autostart='"+autostart+"'></embed>";
}
function doc_write(cont)
{
document.write(cont);
}
---------------------------------------------------------------------
---------------------------------------------------------------------view_obj.js 파일 불러오기
<head>
<SCRIPT language="javaSCRIPT" src="view_obj.js"></SCRIPT>
</head>
---------------------------------------------------------------------
---------------------------------------------------------------------
<script>doc_write(flash_movie("플래시경로", "id", 가로픽셀, 세로픽셀, "모드"));</script>
적용예제 :
<script>doc_write(flash_movie("main.swf", "mainflash", 450, 100, "transparent"));</script>
테스트 해ㅤㅂㅘㅅ는데 잘되네요~!^^&
http://www.matsutrade.com/