소스보기 프로그램을 메모장 대신 다른 프로그램이 뜨도록 설정할 수 있습니다.

방법은..

시작-실행-regedit-

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor\Editor Name으로 가세요

View Source Editor\Editor Name 이키가 없으면 만들어주세요

그런다음 Editor Name으로 가서 기본값에 원하는 에이터 경로를 적어주면 됩니다.

다른 명령줄처럼  뒤에 %1 붙이면 에러나니 프로그램 경로만 적어넣으세요.

사용자 삽입 이미지

사용자 삽입 이미지
[Flash] Actionscript 내에서 URL 호출하기

Actionscript내에서 외부 URL을 호출하려면
* Actionscript
var ld:LoadVars = new LoadVars();
    ld.load("http://kokane.tistory.com/result.jsp");
    ld.onLoad = function(success:Boolean) {
       if (success) {
            // 정상적으로 로딩되었을 경우
        } else {
            // 로딩 에러시
        }
   }

+ Recent posts