• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Flash animation .swf displayed from cache

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I have used flash animation(.swf) on my JSP Page. It gets displayed correctly but when i change the animation, it displays correctly on some systems and doesn't display correctly on other systems. I don't know what is the problem, may be because of cache but i cleared all the history and cache of browser but still the older animation gets displayed.
Following is the code i am using to display flash animation:

<object class="banner" height="165" width="650" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param value="/swf/Management.swf" name="movie"/>
<param value="#000000" name="bgcolor"/>
<param value="high" name="quality"/>
<param value="samedomain" name="allowscriptaccess"/>
<param value="Opaque" name="WMode"/>
<embed height="165" width="650" allowscriptaccess="samedomain" wmode="transparent" quality="high" bgcolor="#000000" src="/swf/seniorManagement.swf" name="Products Page - Landing page - Mast Banner" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"/>
<noembed> </noembed>
</object>
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moved to HTML.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic