script

바로가기 스크립트

aneyh.c 2014. 3. 12. 11:27

<script language="javascript">  

if(navigator.appVersion.indexOf('MSIE')>0) {

if( confirm("바탕화면에 바로가기 아이콘을 만드시겠습니까?") ) {

            var WshShell     = new ActiveXObject("WScript.Shell");

            Desktoptemp      = WshShell.Specialfolders("Desktop");    //path

            var sIconNm      = "다음 게임명";    //바탕화면에 생성될 아이콘명.

            var sName        = WshShell.CreateShortcut(Desktoptemp + "\\" + sIconNm + ".URL");

            sName.TargetPath = "http://game.daum.net/cn/shotonline";   //해당게임 URL 

            sName.Save();

        }

} else {

alert("바로가기는 인터넷 익스플로러만 지원됩니다");

}

</script>