티스토리 뷰
import flash.geom.ColorTransform;
import flash.geom.Transform;
var colorTrans:ColorTransform = new ColorTransform();
var trans:Transform = new Transform(car_mc);
trans.colorTransform = colorTrans;
blue_btn.onRelease = function() {
colorTrans.rgb = 0x333399; // blue
trans.colorTransform = colorTrans;
};
red_btn.onRelease = function() {
colorTrans.rgb = 0xFF0000; // red
trans.colorTransform = colorTrans;
};
green_btn.onRelease = function() {
colorTrans.rgb = 0x006600; // green
trans.colorTransform = colorTrans;
};
black_btn.onRelease = function() {
colorTrans.rgb = 0x000000; // black
trans.colorTransform = colorTrans;
};
--------------------------
car_mc와 blue_btn등 버튼은 스테이지에 놓여있는 무비클립
색변화에 대한 기본적 형태
Flash Player 8부터는 Color 클래스가 사용되지 않으므로
대신 flash.geom.ColorTransform 클래스를 사용하라고 권장하고 있다.
'Language > Flash' 카테고리의 다른 글
SetVariable / GetVariable / 변수값 저장하기 및 가져오기 (0) | 2015.11.29 |
---|---|
FullScreen (0) | 2015.11.29 |
flash 제작시 주의사항 뜨는 속도가 느릴때 (0) | 2015.11.29 |
flash를 벗어날 때 이벤트 체크 (0) | 2015.11.29 |
HTML -> 플래쉬로 값 전달 하기 (0) | 2015.11.29 |