# Flash Browser issues

**URL:** https://forum.kirupa.com/t/flash-browser-issues/299089
**Category:** flash
**Created:** [October 29, 2009, 3:54pm UTC](https://forum.kirupa.com/t/flash-browser-issues/299089 "2009-10-29T15:54:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Utech22](https://avatars.discourse-cdn.com/v4/letter/u/f17d59/32.png) [@Utech22](https://forum.kirupa.com/u/Utech22)
#### Post date: [October 29, 2009, 3:54pm UTC](https://forum.kirupa.com/t/flash-browser-issues/299089/1 "2009-10-29T15:54:47Z")

</div>

I have a simple flash movie that is not being shown in IE8

site: [http://www.fashionsjamaica.com/](http://www.fashionsjamaica.com/)

present script that I am using:

```php
<object width="550" height="400">
<param name="movie" value="http://www.fashionsjamaica.com/somefilename.swf">
<embed src="http://www.fashionsjamaica.com/somefilename.swf" width="550" height="400">
</embed>
</object>

```

This script only shows in firefox and chrome:

```auto
<script type="text/javascript">
AC_AX_RunContent( 'width','550','height','400','src','http://www.fashionsjamaica.com/somefilename.swf','movie','http://www.fashionsjamaica.com/somefilename.swf' ); //end AC code
</script><noscript>
<object width="550" height="400">
<param name="movie" value="http://www.fashionsjamaica.com/somefilename.swf">
<embed src="http://www.fashionsjamaica.com/somefilename.swf" width="550" height="400">
</embed>
</object></noscript>

```
