2007. 9. 19. 12:13

자주쓰는 단어를 익스플로러에서 쉽게 복사할수 있는 방법입니다.

이미지의 소스복사를 약간 변형한 방법입니다. 오른쪽 메뉴를 눌러 원하는 메뉴를 선택하시면

클립보드에 복사가 됩니다. 게시판 덧글이나 글작성시 유용하게 쓰일수 있습니다.

메뉴를 선택하면 미리만들어둔 htm 파일의 내용이 클립보드로 복사가 됩니다.



메뉴에 추가하는 레지스트리. addext.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\이사갑니다 jinmoda.tistory.com]
@="c:\\program files\\Internet Explorer\\jinmoda.tis.htm"
"Contexts"=dword:00000007



C:\Program Files\Internet Explorer\jinmoda.tis.htm 파일로 저장
<html>
<input type="edit" name="location" value="">
<script language="javascript" defer>
var parentwin = external.menuArguments;
document.all.location.value = '티스토리 블로그로 이사갑니다. http://jinmoda.tistory.com';
document.all.location.select();
document.execCommand("Copy");
</script>
</html>


파일을 만들어서 저장후 다른 내용을 만드시려면 똑같은 방법으로 이름만 바꿔주시면 됩니다.

수정할부분
레지스트리 파일의 메뉴부분, 메뉴실행의 htm 파일경로, 실행하는 htm 파일의 클립보드내용

관련글 보기
2007/10/19 - [윈도우즈/컴퓨터] - 링크 안걸린 홈페이지 주소 쉽게 새창으로 열기
2007/10/02 - [윈도우즈/컴퓨터] - 웹페이지에서 마우스 오른쪽 눌렀을때 프로그램 실행시키기
2007/09/25 - [윈도우즈/컴퓨터] - 웹페이지 오른쪽 눌렀을때 스크롤을 최상단,최하단으로 옮기는 메뉴
2007/09/19 - [윈도우즈/컴퓨터] - 불펌 금지 해제 스크립트 팁 및 네이버 글 퍼오기

Posted by jinmoda