user984621
user984621

Reputation: 48453

SWF flash animation doesn't work correctly

At my page is a flash animation - under the logo. The problem is, that the animation doesn't works correctly - is slow, the images in the animation are blurred etc. If I play the animation in Elmedia Player, there it works nice, but on the website not.

I included the animation into the page this way:

<div>
  <object type="application/x-shockwave-flash" data="/images/intro.swf" width="986" height="110">
    <param name="movie" value="/images/intro.swf" />
  </object>
</div>

Where could be the issue / how could I this issue fix?

Thank you in advance.

Upvotes: 0

Views: 1461

Answers (2)

evilpenguin
evilpenguin

Reputation: 5478

Your embed code is apparently not working. For compatibility with all major browsers and generally hassle-free embedding of Flash movies in HTML pages, I really recommend SWFObject.

It has a handy generator GUI that sets up all the code for you and all you have to do is copy+paste.

Upvotes: 1

Neil
Neil

Reputation: 8111

When I try your page in two different browsers I get an error with the GMap2. Maybe this is stopping your flash being embedded?

 var map = new GMap2(document.getElementById("map_canvas"));

Upvotes: 1

Related Questions