监测fileloop类型文件
在一帧内判断一个filmloop播放完毕,再继续播放下一帧。
frame script中含有以下代码,以实现"定格":
on exitframe me
go the frame
end
再把以下behavior拖到filmloop sprite即可:
on exitframe me
tell sprite(me.spriteNum)
if the frame = the lastframe then
ploopcnt = 1
end if
end tell
if ploopcnt then
go next --或改为其它命令
end if
end