I was having a nasty issue with IE trying to invoke swf method from
javascript after inserting the movie in the DOM with $(self.element
[0]).html("<object id="movie01">....</object>").

It was working nicely in all browsers but IE where I would get  a
"Object doesn't support this property or method " message and
javascript to actionscript communication would fail.

Adobe knowledge base was talking about object naming issues or ActiveX
kill bits but none of the recommendations would work for me.

I finally found out that replacing the $(self.element[0]).html
("<object id="movie01">....</object>") by $(self.element[0]).innerHTML
= "<object id="movie01">....</object>" solves the problem.

While it looks like the DOM content is the same using one method or
the other, it seems that IE does not interpret it the same way.

Hope it helps !

Reply via email to