elsassph / eaze-tween

Automatically exported from http://code.google.com/p/eaze-tween - see also active fork in development: https://github.com/mayakwd/as3-eaze-tween
1 stars 0 forks source link

EazeTween.killTweensOf(this) as well as eaze(this).killTweens doesn't kill properly #22

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

function avoidStackOverflow():void
{
 if (_hasBeenKilled == true)
 trace("eaze doesn't kill properly the tweens?");
}

eaze(this).delay(0.01).onComplete(avoidStackOverflow);

... (another function):

_hasBeenKilled = true;
EazeTween.killTweensOf(this);

What is the expected output? What do you see instead?

I expect to never see the trace  "eaze doesn't kill properly the tweens?"
Instead I see it.

What version of the product are you using? On what operating system?

latest version on win7

Original issue reported on code.google.com by Sebastia...@gmail.com on 26 Jun 2011 at 4:18

GoogleCodeExporter commented 9 years ago
I can't reproduce this issue.

If you add a trace("killing now"); before the call to killTweensOf, does it 
appear before the trace call in avoidStackOverflow?

Original comment by philippe...@gmail.com on 29 Jun 2011 at 11:58