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.
views:
312answers:
2
Q:
Error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds.
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
2010-02-03 22:57:35
A:
9/10 it's something like this:
var i:int;
while (i < 10)
{
// do something
}
Forget to increment i
?
Typeoneerror
2010-02-03 23:08:06