关于as3.0 play方法
as3.0 在方法中带有play(); 的话会不会播放到下一针?
在测试的时候 我以a()方法设为断点,
a('1');
* function a(type:string)
{
if(type == '1')
{
play();
}
}
stop();
问题是他执行到了play() 并没有跳到下针,那下针的as语句什么时候运行呢?
[解决办法]
没有跳帧的原因是因为你的stop();
你都把整个帧暂停掉了 它还怎么跳帧...
[解决办法]
跳转下一帧的用nextFrame()