# FP9 with Swfobject 1.5

**URL:** https://forum.kirupa.com/t/fp9-with-swfobject-1-5/261993
**Category:** flash
**Created:** [June 2, 2008, 2:34pm UTC](https://forum.kirupa.com/t/fp9-with-swfobject-1-5/261993 "2008-06-02T14:34:24Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![rumblesushi](https://avatars.discourse-cdn.com/v4/letter/r/b38774/32.png) [@rumblesushi](https://forum.kirupa.com/u/rumblesushi)
#### Post date: [June 2, 2008, 2:34pm UTC](https://forum.kirupa.com/t/fp9-with-swfobject-1-5/261993/1 "2008-06-02T14:34:24Z")

</div>

Is this known to be incompatible? I did some AS3 stuff over the weekend, copied in one of my SWFOb1.5 HTML pages, and nothing, changed the player number to 9 etc, it acts as if the movie is loaded but nothing happens, just a blank background, you right click and the flash has loaded, just not working.

Very strange.

---

<div class="post-metadata">

### Author: ![indyp](https://avatars.discourse-cdn.com/v4/letter/i/df788c/32.png) [@indyp](https://forum.kirupa.com/u/indyp)
#### Post date: [June 2, 2008, 2:54pm UTC](https://forum.kirupa.com/t/fp9-with-swfobject-1-5/261993/2 "2008-06-02T14:54:31Z")

</div>

You might want to try swfobject 2.0???

> **[swfobject/swfobject](https://github.com/swfobject/swfobject)**
>
> swfobject - An open source Javascript framework for detecting the Adobe Flash Player plugin and embedding Flash (swf) files.

Hope this helps!

---

<div class="post-metadata">

### Author: ![rumblesushi](https://avatars.discourse-cdn.com/v4/letter/r/b38774/32.png) [@rumblesushi](https://forum.kirupa.com/u/rumblesushi)
#### Post date: [June 3, 2008, 2:28pm UTC](https://forum.kirupa.com/t/fp9-with-swfobject-1-5/261993/3 "2008-06-03T14:28:00Z")

</div>

Cheers, I had already found and tried it actually. Interestingly, it only works with a static SWFobject page, not dynamic. With IE7 at least.

---

<div class="post-metadata">

### Author: ![Felixz](https://avatars.discourse-cdn.com/v4/letter/f/ecb155/32.png) [@Felixz](https://forum.kirupa.com/u/Felixz)
#### Post date: [June 3, 2008, 4:07pm UTC](https://forum.kirupa.com/t/fp9-with-swfobject-1-5/261993/4 "2008-06-03T16:07:34Z")

</div>

```auto
<head>
    <script type="text/javascript" src="swfobject/swfobject.js"></script>
    <script type="text/javascript">swfobject.embedSWF('Index.swf', 'website', '100%', '100%', '9.0.115', 'swfobject/expressinstall.swf', {}, {bgcolor: '#FFFFFF', menu: 'false', scale: "noscale", wmode: "transparent"}, {id: 'website'});</script>
</head>
<body>
    <div id="website">
    </div>
</body>

```

Shortened version of HTML file
