# Update swf

**URL:** https://forum.kirupa.com/t/update-swf/118131
**Category:** Uncategorized
**Created:** [August 3, 2004, 12:58am UTC](https://forum.kirupa.com/t/update-swf/118131 "2004-08-03T00:58:24Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Neo\_Geo](https://avatars.discourse-cdn.com/v4/letter/n/d2c977/32.png) [@Neo\_Geo](https://forum.kirupa.com/u/Neo_Geo)
#### Post date: [August 3, 2004, 12:58am UTC](https://forum.kirupa.com/t/update-swf/118131/1 "2004-08-03T00:58:24Z")

</div>

Hi,  
How can i make the browser automatically get a new swf file.

For example, i have a web page that used main.swf. When I modified this file and overwrite it, the browser still used the old swf file because the file still exist in temporary internet folder. I can empty my folder, but other viewers may not be able to see the new one. :rambo:

---

<div class="post-metadata">

### Author: ![ratbaggy](https://avatars.discourse-cdn.com/v4/letter/r/a3d4f5/32.png) [@ratbaggy](https://forum.kirupa.com/u/ratbaggy)
#### Post date: [August 3, 2004, 2:15am UTC](https://forum.kirupa.com/t/update-swf/118131/2 "2004-08-03T02:15:03Z")

</div>

searching is easy and rewarding

[http://www.kirupa.com/developer/actionscript/tricks/cache.htm](http://www.kirupa.com/developer/actionscript/tricks/cache.htm)

hth

---

<div class="post-metadata">

### Author: ![Neo\_Geo](https://avatars.discourse-cdn.com/v4/letter/n/d2c977/32.png) [@Neo\_Geo](https://forum.kirupa.com/u/Neo_Geo)
#### Post date: [August 3, 2004, 3:47am UTC](https://forum.kirupa.com/t/update-swf/118131/3 "2004-08-03T03:47:02Z")

</div>

no, im not loading any movie or external file, its the main file. The file that load itself when i open index.html.

```auto

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>My Website</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<div align="center">
  <table width="710" border="0" cellpadding="0" cellspacing="0">
    <!--DWLayoutTable-->
    <tr>
      <td width="710" height="910" valign="top"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="710" height="910">
          <param name="movie" value="index.swf">
          <param name="quality" value="high">
          <embed src="index.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="710" height="910"></embed>
      </object></td>
    </tr>
  </table>
</div>
</body>
</html>

```
