티스토리 뷰

Language/Flash

Button URL 연결

MiniNeko 2015. 11. 29. 04:19

button1.addEventListener(MouseEvent.CLICK, gotoURLhandler);
function gotoURLhandler(event:MouseEvent):void
{
var nateURL:URLRequest = new URLRequest("http://www.nate.com/");
    navigateToURL(nateURL);
}
 
---------------------------------------------------------------------------------------------------------
 
 var url:URLRequest = new URLRequest("http://kr.yahoo.com/");
 navigateToURL(url, "_self");
 
:: AS3.0 XML ::
 <first title="타이틀이름" url="javascript:window.open(`http://www.daeshin.ac.kr/pages/etc/popup_2010_7.jsp`,`popupName`,`toolbar=no,resizable=yes,location=no,menubar=no,scrollbars=no,top=10, left=50,width=400,height=600`);;void(0)" target="_self">
 
---------------------------------------------------------------------------------------------------------
 
■ AS2.0
on (release) {
 getURL("javascript:window.open(`http://www.daeshin.ac.kr/pages/etc/popup_entr2.jsp`,`2012학년도대학입학전형일정`,`toolbar=no,resizable=yes,location=no,menubar=no,scrollbars=no,top=10, left=50,width=441,height=421`);;void(0)");

Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31