본문 바로가기
디자인

flash player 버젼업되면서 getURL안되는 문제

by 세이박스 2008. 10. 27.
반응형
 
2007년 12월 adobe의 flash player 9가 115버전으로 upgrade되었다.
 
upgrade가 되면서 족족 들어나는 버그 및 오류들...
 
그중 한가지인 getURL이 먹통(?)이 되는 오류에 대해서 알아보자.
 
adobe사에서 의도적이진 않았겠지만 보안정책이 바뀌게 되면서 flash player 115버전을 사용하는 컴퓨터에서의 getURL의 사용이
 
제한되었다. 이로인한 해결책은.....
 
==============================================================================

The easiest fix is to specify AllowScript-xAccess="always" in the HTML page, as in this example:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=" http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="550" height="400" align="middle">

<param name="movie" value="http://otherdomain.com/exampleContent.swf">

<param name="allowScript-xAccess" value="always">

<embed type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" width="550" height="400" align="middle" src="http://otherdomain.com/exampleContent.swf" allowScript-xAccess="always"></embed>

</object>
==============================================================================
예문과같이 html코딩상 플래시를 부르는 부분에서의 parameter와 embed부분에 allowScript-xAccess 부분을 always로 추가해주면 된다.
 
crossdomain일 경우에도 마찬가지이다.
 
 
doc-ument.write ("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='960' height='320'>")
doc-ument.write ("<param name='movie' value='http://stfam1.cafe24.com/stlye.swf'>")
doc-ument.write ("<param name=quality value=high>")
doc-ument.write ("<param name='allowScript-xAccess' value='always'>")
doc-ument.write ("<embed src='http://stfam1.cafe24.com/stlye.swf' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='960' height='320' allowScript-xAccess='always'></embed>")
doc-ument.write ("</object>")
반응형