tech/FLASH
html과 연계하지 않은 flash 만의 새 창 띄우기
lehero
2008. 9. 23. 16:13
1. function openWin(url, name, wd, ht, f, s, r) {
getURL("javascript:void(window.open('"+url+"','"+name+"','width="+wd+",height="+ht+",fullscreen="+f+",scrollbars="+s+",resizable="+r+"'))");
}
2. on (release) {
openWin(http://empas.com, "customwin", 400, 400, 0, 0, 0);
}