묻고답하기

플래시에서요...

2002.08.20 09:47

ZeSty~*

투명버튼에 제가 액션을 넣어 get url  이부분에

예를 들어 www.daum.net 을 치면 그쪽으로 새로운 익스플로러가 뜨면서 이동하잖아요

이거 말고

그냥 html 에선
<html>

<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<script language="JavaScript">
<!--
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+ '+ '+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

// -->
</script>
</head>

<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<p><a href="javascript:na_open_window('win', 'http://www.daum.net', 0, 0, 300, 200, 0, 0, 0, 0, 0)">클릭</a></p>
</body>

</html>

이런식으로 도구메뉴나 스크롤바 없이 생성시킬수 있잖아요

근데 이건 자바스크립트로 해야 하는데 플래시 상에서는 안될까요???

플래시 4 입니다.