5月 092007
Flash CS3の体験版が出ていたので、さっそくDLして試してみた。
Adobe – Flash CS3 Professional, Interactive Multimedia, Interactive Design
ダウンロードとインストールで1時間以上かかった。
■Test(要Flash Player9)
よくやる、モーショントゥィーン、stop()、play()、trace()、そしてボタンアクション。
1フレーム目
button1.addEventListener(MouseEvent.CLICK,
function(){
trace(“stop”);
movBall.stop();
}
);button2.addEventListener(MouseEvent.CLICK,
function(){
trace(“move”);
movBall.play();
}
);
button.onRelease = function(){ ~~ };
みたいに短く書く事はできないけど、まあ大体同じ様に無名関数で宣言して登録できる。