لإيقاف المؤقت فى أخر فريم
ActionScript 3, | |
1 | //Stops at the last frame |
-------------------------------------------------------------------------------------------------
لإيقاف المؤقت بعد التكرار عدد معين من المرات
ActionScript 3,
{ if(this.currentFrame == this.totalFrames) { if(counter >= 3) { stop(); setTimeout(startAgain,3000); } else { counter++; } } } function startAgain():void { play(); }
ليست هناك تعليقات:
إرسال تعليق