we have been doing some testing on some embeded flash widgets.
while i know the onerror event, when attached to a object tag is not very cross browser friendly, we are getting this handler called quite a bit for internet explorer users.
while i am quite sure this handler will be called when the swf cannot be loaded (as in, 404, 410, network error, etc), is it called in any other circumstances?
as these widgets are not our own, is it possible to 'throw' an onerror event from within the embeded flash file? if so, this could be why we are seeing this.
i guess i should throw this in as well, is it possible to get any additional information as to what caused the onerror event to be called when it is called?
to summarize, what we are looking for is to know weather it is safe to assume that IF an onerror event is fired from an object tag, that it was fired because the swf did not load successfully, and thus we can attempt to load it from another url. yea, we just don't want to try reloading the swf if onerror was fired for some OTHER reason then the swf failing to load.
some additional information:
we are using the flash satay method of embeding flash. and simply adding the onerror to the object tag, as follows:
<object .... onerror="ourAjaxLogFunction()">
as always, thank you kindly.