Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue: the loop count in TweensyZero.stop function #18

Open
GoogleCodeExporter opened this issue Feb 5, 2016 · 0 comments
Open

Issue: the loop count in TweensyZero.stop function #18

GoogleCodeExporter opened this issue Feb 5, 2016 · 0 comments

Comments

@GoogleCodeExporter
Copy link

I think that  

>> public static function stop(instance : * = null, ...props : Array) : void {
>>          var items : Array = (instance is Array) ? instance : (instance == null) ? 
null : [instance];
>>          var timeline : TweensyTimelineZero;
>>          
>>          for(var i : int = items.length - 1;i >= 0; i--) {
>>              
>>              timeline = list[i];
>> ...

should be


>> public static function stop(instance : * = null, ...props : Array) : void {
>>          var items : Array = (instance is Array) ? instance : (instance == null) ? 
null : [instance];
>>          var timeline : TweensyTimelineZero;
>>          
--          for(var i : int = items.length - 1;i >= 0; i--) {
++          for(var i : int = list.length - 1;i >= 0; i--) {
>>              
>>              timeline = list[i];
>> ...

how do u think ?

Original issue reported on code.google.com by umbrahan on 26 Jul 2012 at 12:13

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant