flashでは最終的に何がくるのかを考える。初めはお店の印象で最後の止まった画像は意味があるものを使っていく。
・期間が決まっていたりいつも見れるものより人の目を引く。
決まったものも必要(定着させるため?)
・date.onLoad = functionがactionscript
flashの場合は自動で
・全体の時間軸とキャラクターの時間軸は別に書く
・キャラクターのムービーに書き込む
・thisの場合一度parentで一度上から戻りまた支持をだす。
・リンクしてるところは行きどまりを作らない。ループさせるか違う出口を用意しておく。
ボタン ランダム記述!
this.onLoad = function(){
this.num1_mc.stop();
this.num2_mc.stop();
this.num3_mc.stop();
}
swichi_btn.onPress = function(){
num1_mc.play();
num2_mc.play();
num3_mc.play();
}
btn1_btn.onPress = function(){
num1_mc.stop();
}
btn2_btn.onPress = function(){
num2_mc.stop();
}
btn3_btn.onPress = function(){
num3_mc.stop();
}
reset.btn.onRelease = function(){
num1_mc.gotoAndStop(1);
num2_mc.gotoAndStop(2);
num3_mc.gotoAndStop(3);
}

画像slide記述

ボタン内右
on(release){
nextFrame();
}
on(release){
if(_currentFrame != 1){
}else{
gotoAndStop(12);
}
}
ボタン左内
on(release){
prevFrame();
}
on(release){
if(_currentFrame != 1){
}else{
gotoAndStop(12);
}
}

action内記述
this.stop();