플래시가 들어간 웹페이지 소스에
<script language="JavaScript">
function newwin(url) {
POP = window.open( url, "WIN_SUB", "status=0,scrollbars=no,resizable=0,width=690,height=550" );
POP.focus();
}
</script>
를 삽입하고 플래시 버튼에 액션
on(release){
getURL("javascript:newwin('http://daum.net')")
}
팝업창닫기 버튼을 만들어서 넣었을 경후 버튼에
on(release){
getURL("javascript:self.close()");
}
를 넣어줍니다.