Error #2044: Unhandled StatusEvent:. level=error, code= -- No flash on page
I'm receiving this error, however there is NO flash on the page. I've used FireBug also to co开发者_如何转开发nfirm, but only receive this error in IE (IE 8 that I've tested).
Is there something else that could cause this outside of flash?
Ok, the reason was due to having https instead of http in the DOCTYPE
Wrong:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "https://www.w3.org/TR/html4/strict.dtd">
Correct:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
精彩评论