swf파일을 display할때 wmode=transparent 추가하여 투명한 배경을 표시하도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2023 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-26 04:35:05 +00:00
parent 28ea10dae4
commit 947d5d40f7

View file

@ -149,6 +149,7 @@ function displayMultimedia(src, width, height, auto_start) {
codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0";
html = ""+
"<object classid=\""+clsid+"\" codebase=\""+codebase+"\" width=\""+width+"\" height=\""+height+"\" >"+
"<param name=\"wmode\" value=\"transparent\" />"+
"<param name=\"movie\" value=\""+src+"\" />"+
"<param name=\"quality\" value=\"high\" />"+
"<embed src=\""+src+"\" autostart=\""+auto_start+"\" width=\""+width+"\" height=\""+height+"\"></embed>"+