북마크 작성자 정보
작성자
꿘쓰

작성일/수정일
2006-04-27 21:20:35 / 2006-04-27 21:20:35
//SCRIPT에서
<script language="JavaScript">
<!--
function showflash(ls_Path, ll_Width, ll_Height){
document.write ("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='" + ll_Width + "' height='" + ll_Height + "' VIEWASTEXT>");
document.write ("<param name=movie value='" + ls_Path + "'>");
document.write ("<param name=quality value=high>");
document.write ("<param name='wmode' value='transparent'>");
document.write ("<embed src='" + ls_Path + "' quality=high pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + ll_Width + "' height='" + ll_Height + "'></embed> ");
document.write ("</object>");
}
-->
</script>
HTML에서
<SCRIPT language=JavaScript>showflash('../images/spot/spot.swf', 407, 183);</SCRIPT>