Hi All,

I have downloaded some flash content from a website using FlashCatcher software..I want to put this flash content in my website...When open that (*.swf) file in IE it is not running..Neither in flash player nor IE...

Please advice me...

Thanks in Advance..

Dani AI

Generated

Note: Flash Player was officially retired (end-of-life in 2020) and modern browsers no longer run the plugin. Running an SWF today requires either the old standalone Flash projector/debugger (unsupported and insecure) or an emulator such as Ruffle, or else converting/rebuilding the content for HTML5. Also remember the permission point raised by — do not reuse someone else’s work without the right to do so.

Common reasons a downloaded SWF will not run (and practical checks):

  • The SWF you grabbed is often only a small loader; the real assets (other SWFs, images, XML, MP3) live on the original site. If it played on the source site but not locally, that is the most likely cause.
  • Local file security, cross-domain restrictions, or hard-coded absolute URLs can stop runtime loads. Test from a local webserver () instead of opening the file via file://.
  • The download may be incomplete or corrupted; compare file size to the original and open the SWF with a decompiler or the Flash debug projector to inspect the timeline and see any runtime errors (use a decompiler like JPEXS to search for external load calls).
  • If assets are missing, preserve the original folder structure or edit the loader paths so they point to the local copies.

Embedding/playback approaches:

  • Legacy HTML embed (note: will not work in modern browsers without an emulator):
<object width="640" height="480" data="yourfile.swf" type="application/x-shockwave-flash">
  <param name="movie" value="yourfile.swf" />
  <param name="allowScriptAccess" value="sameDomain" />
  <param name="wmode" value="opaque" />
  Your browser does not support Flash.
</object>
  • Modern approach: use an in-browser emulator (Ruffle) or convert the SWF to HTML5/JS. Ruffle runs many AS1/AS2 files in-browser; complex AS3 projects may not be supported and typically need a rewrite.

Final notes: do not expose users to unpatched Flash runtimes on public sites — that is a security risk. If the SWF is important to keep, consider extracting assets and rebuilding the interaction in HTML5, or use an emulator for archival display only. For debugging ties back to ’s advice: inspect whether the SWF expects external files or to be hosted on its original domain, then either host those files locally or edit the paths.

Recommended Answers

All 3 Replies

Member Avatar for Member #114696

First of all you could use other guy's stuff without hos/her permission.

The problem you have could have several reasons:
1. The player intalled in your system is outdated, but since you saw the movie, its wont be.
2. The swf movie dynamically uses some other SWF files using loadMovie method, so it wont be available in your computer.

First of all you could use other guy's stuff without hos/her permission.

The problem you have could have several reasons:
1. The player intalled in your system is outdated, but since you saw the movie, its wont be.
2. The swf movie dynamically uses some other SWF files using loadMovie method, so it wont be available in your computer.

Hi Vishesh...

So what should i do if i want to use a flash content from a website to my website..

Please suggest me in this regard...

Thanks in Advance..

Member Avatar for Member #114696

Do you have permission to use it??

All you could do is to place the actual link to that swf file in, src property, i.e. where it actually belong to. For eg. you have hot that from , and in your site its http://www.wxy.com/def.swf, then you will have too use in src tag.

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.