Laya.timer.loop(100, this, looppp);
private function looppp():void
{
trace("______________________");
}
this.stage.on(Event.MOUSE_UP, this, onB);
private function onB():void
{
Laya.timer.clear(this, this.looppp);
SoundManager.playSound("res/sound/onClick.wav");
}
我这边测试没有问题哦!你再查看下你的逻辑是不是有其他的逻辑影响