팝업창 띄우기 
1. HTML 소스를 건드리지 않고 띄우는 방법

 

    투명버튼에다가 다음과 같이 링크를 걸면된다.

 

    on (release) {

getURL("javascript:void(window.open('팝업파일명또는주소.html','네임값','width= 500,height=500,left=0, top=0,toolbar=0, menubar=0, statusbar=0, scrollbar=0, resizable=0'))");

 

}

 ->top 과 left 는 200정도 주면 브라우저 가운데쯤 창이 뜬다

  (0에 가까울수록 창이 브라우저 모서리에 붙음)

 

 

 

2. 플래쉬가 삽입될 HTML문서에 자바스크립트를 추가하는 방법

 

  * html 파일에 아래코드를 삽입 해야된다

 

  <script language="JavaScript">


function new_window()
{
window.open('http://주소', 'new_win','width=500,height=500,left=0, top=0,toolbar=0, menubar=0, statusbar=0, scrollbar=0, resizable=0');
}


</script>


 * 플래쉬버튼에는 다음과 같이 링크를 걸면된다.


on (release) {
getURL ("javascript:new_window();");
}

profile