WebRun.cfs


 맞춤법 검사

 Speller.cs2


다음으로 단축키를 이용해서 사이트에 접속할 방법은 사용자 정의 명령으로 만드는 방법만이 존재합니다
첨부된 cfs 파일을 CC4를 설치시에 함께 제공되는

사용자 정의 명령 생성기(cc4설치폴더->functions -> CFSWizard.exe)로 열어 주시면 다음과 같이 되어 있답니다.


ScriptName=인터넷 실행

unit InternetRun;

function ShellExecute(hWnd: integer; Operation, FileName,
  Parameters, Directory: PChar; ShowCmd: Integer): integer;
  external 'shell32.dll' name 'ShellExecuteA';                              
  
procedure Main;
begin
  ShellExecute(0, 'open', 'iexplore.exe', 'http://stylens.com', ' ', 1);
end;

end.


한눈에 들어오시지요? ^^;
http://stylens.com 부분을 원하시는 주소로 바꾸시면 됩니다.

바꾸신 뒤에 빌드 -> CS2 파일 생성을 해주시면
webrun.cs2 파일이 생성되며 이 파일을 functions 폴더 안에 넣어주시면 기능이 추가됩니다.





2015/04/16 맞춤법 검사 사이트 이동 파일 업로드


cc4설치폴더->functions 폴더 안에 [Speller.cs2] 파일 넣으시면 됩니다.



Posted by 투명인간취급
,