【发布时间】:2014-09-06 13:34:16
【问题描述】:
现在我正在使用 Flash CS6,并在打开 3 秒后尝试启动 Flash。我能做些什么?我是初学者,你能告诉我怎么做吗
【问题讨论】:
-
在时间线的开头添加
frame rate x 3帧。
现在我正在使用 Flash CS6,并在打开 3 秒后尝试启动 Flash。我能做些什么?我是初学者,你能告诉我怎么做吗
【问题讨论】:
frame rate x 3 帧。
你可以使用 setTimeout
import flash.utils.setTimeout;
setTimeout(initPage, 3000); // Time is in milliseconds so 3000 = 3 seconds
function initPage(){
// go to some frame or do other stuff if you are not using timeline
}
【讨论】: