Hello, everyone!

I need to play flash in Internet Explorer. I have this HTML:

HTML Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="oaudio">
<param name="movie" value="file.swf" />
<param name="FlashVars" value="listener=myListener&amp;interval=500" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="file.swf">
<param name="movie" value="file.swf" />
<param name="FlashVars" value="listener=myListener&amp;interval=500" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflash">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
and this Javascript:
Code:
console.log(document.getElementById('oaudio').SetVariable);
And I have those results (CM = Compatibility Mode):

IE8: Object doesn't support this property or method

IE8 CM: Object doesn't support this property or method

IE9: Unknown (I don't have it right now)

IE10: Object doesn't support this property or method

IE10 CM: It's all right, it's working

IE11: undefined

IE11 CM: undefined

ps. Flash installed everywhere that needed. console.log(document.getElementById('oaudio')) is not empty.

I cannot find anything information about it. Maybe exists cross-browser-IE solution? Or it is my mistake somewhere?

Thanks in advance