맨위로
믹시
컴퓨터를 부팅했는데 Num Lock키가 켜지질 않고 꺼져있을 때 해결하는 방법은 다음과 같다.


1. 시작 - 실행 - regedit 입력하고 레지스트 실행
2. HKEY_USERS\.DEFAULT\Control Panel\Keyboard\Initialkeyboardindicators
3. Initialkeyboardindicators 목록 더블클릭
4. 문자열 편집창 - 값 데이터
5. "2"로 수정한 후 재부팅(기본 값 데이터는 "0")

출처 - 딸치

안녕하세요!
이미지위자드 김기현입니다.

엮인글 :
http://www.imgwizard.com/index.php?document_srl=473&act=trackback&key=1e6
List of Articles
번호 제목 글쓴이 날짜 조회 수 최근 수정일
공지 Windows 웹개발관련 팁,소스등을 모아놓은곳입니다. file id: 김선생 2006-03-09 86382 2011-02-01 23:57

Actionscript 키보드값 입력방법

goldbar.onEnterFrame = function() { if (Key.isDown(Key.RIGHT)) { this._x += 4; } if (Key.isDown(Key.LEFT)) { this._x -= 4; } if (Key.isDown(Key.DOWN)) { this._y += 4; } if (Key.isDown(Key.UP)) { this...

  • id: 김기현
  • 2006-01-09
  • 조회 수 6970
  • 2009-09-03 16:39

Javascript 웹페이지대화상자 띄우기

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"> <title>Untitled Document</title> <script language="javascript"> function PopupOpen() { var URL, features; URL = "http://www.kimkee.net...

  • id: 김기현
  • 2006-01-04
  • 조회 수 6354
  • 2006-01-04 11:16

Actionscript 무한 enterFrame 방지요령

function moveM(){ dx = tx - this._x; dy = ty - this._y; this._x += dx * 0.2; this._y += dy * 0.2; trace("재생시간 : "+getTimer()); if(Math.sqrt(dx*dx + dy*dy) < 1){ //종료조건 Math.sqrt()제곱근 trace("목표...

  • id: 김기현
  • 2005-12-15
  • 조회 수 5567
  • 2005-12-15 18:41

Actionscript SWF 동영상 플레이어 file

onClipEvent(load){ _root.clip.gotoAndStop(1); _root.playButton.gotoAndStop(1); } onClipEvent (enterFrame) { _root.load_bar._width = ((_root.clip.getBytesLoaded()/_root.clip.getBytesTotal())*100)*(_root.border._width/1...

  • id: 김기현
  • 2005-12-12
  • 조회 수 8175
  • 2005-12-12 15:35

Actionscript 눈오는소스 2 file

function move1(){ this._y+=Math.random()*5+3; this._x+=Math.random()*2.5-1.5; this._alpha=100-this._y/3.5; if(this._x<0){ this._x+=2; }else if(this._x>(550-this._width)){ this._x-=2; } if(this._y>400){ this._x=Math.random()*5...

  • id: 김기현
  • 2005-12-08
  • 조회 수 6030
  • 2005-12-08 11:38

Actionscript Cryptography file

http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_us&view=sn106&viewName=Exchange%20Search%20Details&authorid=34454920&page=0&scrollPos=0&subcatid=0&snid=sn106&itemnumber=0&extid=1016041&catid=0

  • id: 김기현
  • 2005-12-06
  • 조회 수 5191
  • 2005-12-06 12:45

Actionscript 버튼심볼에 롤오보 커서모양 없애기 useHandCursor

프레임 다음같이... mbutton.useHandCursor = false;

  • id: 김기현
  • 2005-11-28
  • 조회 수 5875
  • 2005-11-28 11:06

Actionscript _currentframe

on (rollOver){ current_frame = _currentframe; if (current_frame > 15){ current_frame = 30 - current_frame; } gotoAndPlay(current_frame); } on (rollOut){ if (current_frame < 15){ current_frame = _currentframe; ...

  • id: 김기현
  • 2005-11-23
  • 조회 수 6667
  • 2008-04-11 09:55

Windows 컴퓨터를 부팅했는데 Num Lock키가 켜지질 않고 꺼져있을 때 해결하는 방법

컴퓨터를 부팅했는데 Num Lock키가 켜지질 않고 꺼져있을 때 해결하는 방법은 다음과 같다. 1. 시작 - 실행 - regedit 입력하고 레지스트 실행 2. HKEY_USERS\.DEFAULT\Control Panel\Keyboard\Initialkeyboardindicators 3...

  • id: 김기현
  • 2005-10-29
  • 조회 수 5946
  • 2005-10-29 17:58

Actionscript LoadVars txt 파일 내의 변수를 불러오자

플래시 액션 kimkeeLoad = new LoadVars(); kimkeeLoad.load("PNumSet.txt"); kimkeeLoad.onLoad = function(success){ if(success){ trace("OK"); _root.gotoAndStop(kimkeeLoad.FrameNum); _root.mc.gotoAndStop(kimkeeLoad.MCstop); } } 텍...

  • id: 김기현
  • 2005-10-07
  • 조회 수 6080
  • 2005-10-07 16:58