I'm writing a new page for our cub, it has a top page frame and 3 below. In IE it appears fine but in firefox only the top frame appears.

I am no expert programmer and the main thing is we would like the fash bit to work. It is only one page at the moment. The aim is the new pages will replace the fash frame (I can do that bit)

The test page is here at the moment but only for a few days.

Many Thanks

Dani AI

Generated

A short, practical follow-up that builds on 's original report and the suggestions from and .

Historically, Internet Explorer used an ActiveX-based embedding path while Firefox relied on the NPAPI plugin, so incorrect or IE-only embed markup often produced a white box in non-IE browsers. Useful checks beyond fixing the doctype: ensure cross-browser object/embed markup is used, confirm the server serves .swf with the correct MIME type, test the SWF directly outside any frames to isolate frame-related rendering, and avoid wmode settings that can break rendering in some browser/plugin combinations. For robust embedding, use a small script-based shim such as SWFObject that handles differences and feature-detects the Flash plugin rather than relying on IE-only markup (SWFObject on GitHub). Browser and HTML reference for the object element is here: MDN — object element. MIME type reference: .

A minimal, cross-browser pattern that typically worked (illustrative):

<object type="application/x-shockwave-flash" data="movie.swf" width="600" height="400">
  <param name="movie" value="movie.swf" />
  <param name="wmode" value="opaque" />
  <embed src="movie.swf" type="application/x-shockwave-flash" width="600" height="400" wmode="opaque"></embed>
</object>

Important context for readers who find this thread much later: Flash Player reached end-of-life and major browsers block or disable SWF content by default. Newer options are to convert animations to HTML5/JS/CSS, or to use an emulator such as Ruffle for legacy content (Ruffle); see Adobe's Flash Player EOL notice for official guidance (Adobe Flash Player EOL).

Recommended Answers

All 3 Replies

check your doctype... Firefox is stricter than IE in terms of markup.

I now have all the frames appearing but the flash (.swf) file only runs in IE. In firefox it is just a white box.
The pages are up with the code as it is in but I have to say I can't see why it is not working unless it is something I don't reay understand how to do.

Thanks to reply above I've got the frame bit ok though.

Thanks

I'm writing a new page for our cub, it has a top page frame and 3 below. In IE it appears fine but in firefox only the top frame appears.

I am no expert programmer and the main thing is we would like the fash bit to work. It is only one page at the moment. The aim is the new pages will replace the fash frame (I can do that bit)

The test page is here at the moment but only for a few days.

Many Thanks

I like your website. Go to this link it will help you with browser issues that your experience. This might be the problem http://www.dynamicdrive.com/forums/showthread.php?t=46095

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.