Flash 게임 링크를 바탕 화면으로 바로 가기 저장

3876 단어 Flash
 1 /** 

 2          *  

 3          */

 4         public static function addDesktopUrl(strTitle:String, strUrl:String, onFinish:Function = null,onError:Function = null):void

 5         {

 6             try

 7             {

 8                 var kSaveFile:FileReference = new FileReference();                

 9                 var strFileContent:String = "[InternetShortcut]" + "
"
; 10 strFileContent += "URL=" + strUrl+"
"
; 11 strFileContent += "IconFile=" +"
"
; 12 strFileContent += "IconIndex=0" +"
"
; 13 if(onFinish!=null){ 14 kSaveFile.addEventListener(Event.COMPLETE, onFinish); 15 } 16 if(onError!=null){ 17 kSaveFile.addEventListener(IOErrorEvent.IO_ERROR, onError); 18 } 19 kSaveFile.save(strFileContent, strTitle + ".url"); 20 } 21 catch (e:Error) 22 { 23 } 24 }

데스크톱 바로 가기를 동적으로 만드는 문자열을 사용했습니다.
데스크톱 단축키를 텍스트 상자에 끌어다 놓으면, 이 단축키는 텍스트 상자로 열 수 있습니다.열면 보이는 내용은 위의 문자열과 유사한 형식입니다.

좋은 웹페이지 즐겨찾기