안녕하세요! 이미지위자드 김기현입니다.
Javascript E6 Active X 설계변경에 대한 플래쉬코딩방법
===================================== JS 파일 내용 ===================================== function flashWrite(url,w,h,id,bg,vars,win){ var flashStr= "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.mac...
HTML/CSS Div 태그로 레이아웃 잡기 (연습)
<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...
Actionscript 마우스커서모양변경팁
Mouse.hide(); //기본커서모양을 감춘다 this.onMouseMove = function() { //this무비클립을 마우스포인터에 따라오게 한다 this._x = _root._xmouse; this._y = _root._ymouse; updateAfterEvent(); // FPS에 상관없이 액션을반복한다 }; //Mouse.show();
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...
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...
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...
Actionscript SWF 동영상 플레이어
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...
Actionscript 눈오는소스 2
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...
Actionscript Cryptography
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
Actionscript 버튼심볼에 롤오보 커서모양 없애기 useHandCursor
프레임 다음같이... mbutton.useHandCursor = false;