Hi Alllllll

My problem is that the flash which i added in the web page is not displaying in any browser.
plz see the site so that u can get idea - <URL SNIPPED>

One more prob is that How to adjust height of background image with the variable height of different pages. Plz take a look of left hand side band of the sam site.

plz help me its very urgent

Dani AI

Generated

Short, practical checklist and fixes that address the three issues raised by , and .

First, quick troubleshooting for "Flash not showing at all": open the SWF file directly in the browser to confirm the server is serving it (use Developer Tools → Network to see 200 vs 404/403). Check filename case (hosts like Linux are case-sensitive), file permissions, and server MIME type (should be application/x-shockwave-flash). Look in the console for JavaScript errors — if the embedding helper JS (AC_Run... / AC_FL_RunContent) fails to load or errors out, the dynamic insertion will fail. If multiple embedding scripts are included you can get conflicts; make sure you only include the Active Content helper once.

If other scripts or page elements disappear when many SWFs are present (the symptom described), it is often the Flash window mode. Add a window mode so Flash does not float above HTML/CSS layers:

<!-- add a wmode param and attribute -->
<param name="wmode" value="opaque" />
<embed ... wmode="opaque"></embed>

Use opaque or transparent to allow HTML overlays and other elements to appear above Flash. Note: windowless mode can bring keyboard/focus quirks and some performance cost. For robust embedding and to avoid markup quirks, use a library such as SWFObject rather than ad-hoc object/embed markup (SWFObject on GitHub).

For the left-column background that must match variable page height, use CSS rather than fixed-height images. The simplest approach is a vertically repeating background on that column or on a wrapper (the "faux columns" technique). Example:

.left-column {
  background: url('/assets/left-bg-repeat.png') repeat-y;
}

If the image cannot tile, use a single full-height wrapper background or modern CSS (background-size) or replace the effect with CSS gradients or scalable SVG so it stretches without visible seams.

Finally, if the site is being viewed today: Flash has been officially discontinued and blocked in modern browsers. Long-term fixes are to convert animations to HTML5/Canvas/SVG/JS or use video or Lottie-based assets. See Adobe's Flash end-of-life notice for details: Adobe — Flash Player end-of-life.

Recommended Answers

All 3 Replies

Please provide the code instead of link

The code is as follows

<td rowspan="5" align="left" valign="top"><script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','426','height','244','src','Flash/Mh_Map','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','Flash/Mh_Map' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="426" height="244">
              <param name="movie" value="Flash/Mh_Map.swf" />
              <param name="quality" value="high" />
              <embed src="Flash/Mh_Map.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="426" height="244"></embed>
            </object></noscript></td>

I got script that show the animated clock from this forum, but the problem is when I embed to my simple web this feature of script can be displayed, but it's disappear when my web become full of embedding animated flash. So my question is what is the cause that such a script cannot be displayed in the crowded web programming
anyone who knows the answer please help me to solve this problem
thanks

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.