Sometimes(I can’t give exact classification of the situation) Error #2000 is thrown by flash player. I suppose it’s caused by working with external swf(sqiglly spell checking library) via local connection.
Have you any idea how can I fix the bug?
thank you in advance!
Without the actual code, one has about 3 or 4 different reasons for Error #2000. Most of the times it is because the security policy was not set properly or was not received in time.
A next issue to check would be if there is enough time for the context to be set up,
var myLoader:Loader = new Loader();
var url:URLRequest = new URLRequest(“myExternalMovie.swf”);
myLoader.load(url);
// Notice it is not the following
myLoader.load(new URLRequest(“myExternalMovie.swf”));
Full url references seem to work better than relative.