I am getting the following error when running an application in debug mode using Flash Builder:
Object does not support this property or method
(Note that this error message is coming from the browser.)
Here is the code where it is occurring:
function __flash__addCallback(instance, name) {
instance[name] = function () {
return eval(instance.CallFunction("<invoke name=\""+name+"\" returntype=\"javascript\">" + __flash__argumentsToXML(arguments,0) + "</invoke>"));
}
}
I have no idea where this code is located (except that it's not my code).
Anyone know what's going wrong here?