views:

312

answers:

2

I got this error and I am not sure what it's about. The last thing I remember doing is adding a clearInterval() method to clear some setTimeOut() intervals varibles. besides that I am not sure what it could be. Not asking for a solution. But if anyone know's any possibilities of what it could trigger that error, maybe that might help me to figure out where its coming from.

A: 

An infinite loop can cause this error. You are into a function that never ends and since everything is freezed, the player let you interrupt the running script after a timeout period.

Patrick
A: 

9/10 it's something like this:

var i:int;

while (i < 10)
{
    // do something
}

Forget to increment i?

Typeoneerror