การทำ Flash animation แบบ smooth
วิธีการทำ animation แบบ smooth ในกรณีที่ใช้ mouseOver ซ้ำๆ
ที่เฟรมแรก ใส่ script ดังนี้
[กำหนด event ก่อน]
this.onRollOver = function(){
over = true;
}
this.onRollOut = function(){
over = false;
}
////////////////////////////////////////////////////////////////////////////////
[เขียน function ตรวจสอบการทำงาน]
this.onEnterFrame = function(){
if(over){
nextFrame();
}else{
prevFrame();
}
}
stop();
Categories: Flash
smooth Flash animation