'전체 글'에 해당되는 글 1811건

  1. 2011.05.17 CrossDomain PolicyFile Specification
  2. 2011.05.17 nikon d80
  3. 2011.05.17 An Isometric Tile Game
  4. 2011.05.17 Tile Base Game
  5. 2011.05.16 Using external font assets (.SWF) Error
  6. 2011.05.14 inheritance & composition

CrossDomain PolicyFile Specification

Adobe Flash 2011. 5. 17. 13:46
반응형
반응형

'Adobe Flash' 카테고리의 다른 글

ApplicationDomain  (0) 2011.05.18
Flash Player 보안  (0) 2011.05.18
An Isometric Tile Game  (0) 2011.05.17
Away3D  (0) 2011.05.12
ActionScript 3 Jpeg Encoder Revealed: Saving Images from Flash  (0) 2011.02.01
:

nikon d80

Private 2011. 5. 17. 13:40
반응형
참고: http://d80.nikon-image.co.kr/main.html
반응형

'Private' 카테고리의 다른 글

늣풀님의 티스토리  (0) 2011.05.25
Useful Sites & Blogs  (0) 2011.05.18
motion tracking_object mapping  (0) 2011.05.09
monoshift  (0) 2011.05.04
Motion tracking & Image composition  (0) 2011.04.06
:

An Isometric Tile Game

Adobe Flash 2011. 5. 17. 11:29
반응형
반응형

'Adobe Flash' 카테고리의 다른 글

Flash Player 보안  (0) 2011.05.18
CrossDomain PolicyFile Specification  (0) 2011.05.17
Away3D  (0) 2011.05.12
ActionScript 3 Jpeg Encoder Revealed: Saving Images from Flash  (0) 2011.02.01
ASDoc 만들기  (0) 2011.01.16
:

Tile Base Game

Adobe Flash/ActionScript 3.0 2011. 5. 17. 11:29
반응형
반응형

'Adobe Flash > ActionScript 3.0' 카테고리의 다른 글

What is OSMF ?  (0) 2011.05.18
Flash custom component  (0) 2011.05.18
as3 callback function 2  (0) 2011.05.12
as3 callback function 1  (0) 2011.05.12
Flash CS5 Code Hint for Mac  (0) 2011.04.19
:

Using external font assets (.SWF) Error

Adobe Flash/Error Note 2011. 5. 16. 14:38
반응형


package {
import flash.text.Font;
import flash.events.Event;
import flash.net.URLRequest;
import flash.display.Loader;
import flash.events.EventDispatcher;
import flash.events.IEventDispatcher;

/**
* @author Jang sang wook ( smilejsu@nate.com )
* @version 1.0
* @date 2011. 5. 16.
*/
public class FontLoader extends EventDispatcher {
private var _loader:Loader = new Loader();
public function FontLoader(target : IEventDispatcher = null) {
super(target);
}
public function load($url:String):void{
_loader.load(new URLRequest($url), null);
_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaded);
}

private function onLoaded(event : Event) : void {
_loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, onLoaded);
var font:Class = _loader.contentLoaderInfo.applicationDomain.getDefinition("Yun330") as Class;
trace(font);
Font.registerFont(font);
}
}//class
}//package 


참고:
http://etcs.ru/pre/FontLoaderDemo/
http://www.mokisystems.com/blog/flash-as3-loading-fonts/

problem solved
data: 2011.05.17

전역 보안 설정 패널 

반응형
:

inheritance & composition

카테고리 없음 2011. 5. 14. 10:06
반응형

상속(inheritance)과 합성(composition)

상속: 상위 클래스의 구현(속성과 메서드의 구현)을 하위 클래스가 물려받아 확장하기 위한것

합성: 다른 객체들에게 자신이 해야할 작업을 위임(delegation)하여 대신 실행하게 하는것


참고: http://blog.naver.com/hkn10004/20125740248
반응형
: