Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- flash
- 수학정석
- addChild
- 태그클라우드
- as2
- KGC 2013
- DataBinding
- scaleform3
- flash cs3
- 애드온
- 강좌
- 스케일폼
- GDC
- ApplicationDomain
- 샌프란시스코
- autodesk
- as3
- Chart
- CLIK
- 플래시
- MMOKit
- as3.0
- 집합의 연산
- Document Class
- 형변환
- scaleform
- 클릭
- watch
- scaleform4
- flash player 10
Archives
- Today
- Total
목록Sprite (1)
scaleform.minarto.com
buttonMode
as 3.0에서는 buttonMode 속성을 true 라고 해줘야 손가락 모양이 나타난다. 그런데 true 라고 해줘도 안나타나는 경우가 있다. 그 경우는 다음과 같다... var sp:Sprite = new Sprite(); var tf:TextField = new TextField(); tf.text = "미나토입니다"; tf.autoSize = TextFieldAutoSize.LEFT; sp.addChild(tf); addChild(sp); sp.buttonMode = true; sp.addEventListener(MouseEvent.ROLL_OVER, over); function over(event:Event):void { trace(event); } 이것은 hitArea 의 영역을 설정해주지 않..
ActionScript
2007. 5. 28. 14:23