Colin Moock가 Essential ActionScript 3.0의 원고 작성을 완료하고, O’Reilly 출판사로 넘겼다고 합니다. 3개의 파트, 31장으로 구성되며, 800여 페이지 분량이네요.

Part I: ActionScript from the Ground Up (450 pages)
PART II: Display and Interactivity (357 pages)
PART III: Applied ActionScript Topics (55 pages)

6월말 출간 예정인데, 더 빨리 나올지도 모르겠네요. ㅎㅎ

 

ActionScript 3.0에서 onReleaseOutside를 대체할 만한 이벤트가 없습니다.
그래서 MOUSE_DOWN 이벤트가 발생할 때, stage에 MOUSE_UP 이벤트를 추가했다가,
MOUSE_UP 이벤트 핸들러에서 다시 MOUSE_UP를 제거시키는 방법을 사용해야 하네요.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public function Test(){
        // Add MOUSE_DOWN event to mc
        mc.addEventListener(MouseEvent.MOUSE_DOWN, rotateDragStart);
}
 
private function rotateDragStart(evt:MouseEvent):void{
        // Start drag
 
        // Add ENTER_FRAME event to mc
        mc.addEventListener(Event.ENTER_FRAME, rotateDragging);
        // Add MOUSE_UP event to stage
        stage.addEventListener(MouseEvent.MOUSE_UP, rotateDragStop);
}
private function rotateDragStop(evt:MouseEvent):void{
        // Stop drag
 
        // Remove ENTER_FRAME event from mc
        mc.removeEventListener(Event.ENTER_FRAME, rotateDragging);
        // Remove MOUSE_UP event from stage
        stage.removeEventListener(MouseEvent.MOUSE_UP, rotateDragStop);
}
private function rotateDragging(evt:Event):void{
        // Excute while dragging
}

thanks to derision, kidari70 and plandas from flash8coders.com

 

플래시 무비 재생시 성능 향상을 위한 팁 2번째 입니다.

Flash Performance Tips Part II

 

어도비는 3월 27일 Adobe Creative Suite 3를 발표할 것이라고 합니다.
이날 어도비는 CS3 제품의 기능과 구성에 대해 발표할 예정입니다.

이전의 경험에 비추어보면 실제 제품의 출시일은 이보다 좀 늦어질 것으로 생각됩니다만…
어찌됐든 무척 기대가 되는군요.

Creative Solutions PR @ Adobe

Adobe Creative Suite 3 to be unveiled this month

어도비,「Creative Suite 3」3월말 발표 예정

アドビ、「Creative Suite 3」を3月中に発表へ

 
This is AS2 to AS3 migration cheatsheets from actionscriptcheatsheet.com.

as3cs_migration.pdf

actionscriptcheatsheet.com에서 제작한 AS2에서 AS3로 가면서 바뀐 클래스나 메소드, 프로퍼티들을 정리해 놓은 문서입니다.
© 2011 Hangun's World - Blog Suffusion theme by Sayontan Sinha