Ra.
Ra.

Reputation: 955

swf file size issue in internet explorer

I have swf file, the firefox and chrome displays the swf files as per the mentioned width and height. But in Internet explorer, the swf file is too small than the other browsers.

Any idea to fix?

Thanks in advance.

Upvotes: 1

Views: 1535

Answers (3)

Scott Talsma
Scott Talsma

Reputation: 11

In IE8, the common fix was to set up IE7 emulation with a meta-data tag:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

Not sure if that will fix your issue or not.

Upvotes: 1

Dennis Jaamann
Dennis Jaamann

Reputation: 3565

Although I don't know which method you are using to embed your swf file into your html page, I would advise you to use SWFObject

It is an open source javascript class that handles this kind of browser quirks for you.

Cheers

Upvotes: 0

Chris
Chris

Reputation: 11

In "object" if you delete attribute "class" then you'll have normal size in IE,opera,ff. In Chrome will be smaller.

Upvotes: 1

Related Questions