使用ActionScript 2暂停帧
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ActionScript 2暂停帧相关的知识,希望对你有一定的参考价值。
On a new layer, add the following Actionscript to the frame requiring to be paused.1000 represents the delay in milliseconds, being 1 second.
stop(); var interval:Number = setInterval( function():Void { play(); clearInterval(interval); }, 10000 );
以上是关于使用ActionScript 2暂停帧的主要内容,如果未能解决你的问题,请参考以下文章