맨위로
믹시
프레임 다음같이...

mbutton.useHandCursor = false;


profile

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

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

Javascript E6 Active X 설계변경에 대한 플래쉬코딩방법 file

===================================== JS 파일 내용 ===================================== function flashWrite(url,w,h,id,bg,vars,win){ var flashStr= "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.mac...

  • id: 김기현
  • 2006-03-02
  • 조회 수 7122
  • 2006-03-02 17:13

HTML/CSS Div 태그로 레이아웃 잡기 (연습) file

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=shift_jis" /> <title>Div Layout Exm</title> <style type="text/css"> body{ background:black; padding:0px; height:100%; width:100%; text-align:center; } #top{ backgroun...

  • id: 김기현
  • 2006-02-27
  • 조회 수 21136
  • 2008-04-11 09:54

Actionscript 마우스커서모양변경팁

Mouse.hide(); //기본커서모양을 감춘다 this.onMouseMove = function() { //this무비클립을 마우스포인터에 따라오게 한다 this._x = _root._xmouse; this._y = _root._ymouse; updateAfterEvent(); // FPS에 상관없이 액션을반복한다 }; //Mouse.show();

  • id: 김기현
  • 2006-01-09
  • 조회 수 9840
  • 2008-04-04 11:52

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._y -= 4; } }; · Key.BACKSPACE – the "bac...

  • id: 김기현
  • 2006-01-09
  • 조회 수 7542
  • 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/"; features = "dialogWi...

  • id: 김기현
  • 2006-01-04
  • 조회 수 7051
  • 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("목표지점으로 이동끝!"); delete this.onEn...

  • id: 김기현
  • 2005-12-15
  • 조회 수 6151
  • 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/100); _root.play_bar._wid...

  • id: 김기현
  • 2005-12-12
  • 조회 수 9018
  • 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()*550; this._y=0; t...

  • id: 김기현
  • 2005-12-08
  • 조회 수 6762
  • 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
  • 조회 수 5746
  • 2005-12-06 12:45

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

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

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