Flash files, preferrably .swf, must be embedded in HTML which the webbrowser.dll will be able to load. The HTML code is something like this
Code:
<html>
<body leftmargin='0' topmargin='0' bgcolor='#003863'>
<br />
<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='100%' height='100%'>
<param name='movie' value='myshow.swf' />
<param name='quality' value='high' />
<param name=bgcolor value="#003863" />
<embed src='myshow.swf' bgcolor='#003863' width='100%' height='100%' quality='high'></embed>
</object>
</body>
</html>
Play with the width and height parameters if need be.
The converter utility also recommends HTML code for playing in a web browser.