Tuesday 18 April 2006 3:25:08 am
Hi All, Microsoft issued an Internet Explorer patch which forces visitors to click on flash content in a page to enable it I decided to include the workaround provided by Adobe (http://www.macromedia.com/devnet/activecontent/). Between the <head> tag I included:
<script src="/design/mws/javascripts/AC_RunActiveContent.js" type="text/javascript"></script>
and where the flashmovie should show up:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0',
'width','800','height','258','src','/design/path/images/intro.swf','quality','high',
'pluginspage','http://www.macromedia.com/go/getflashplayer',
'movie','/design/path/images/intro.swf' );
</script>
The result is an empty space with the correct dimensions of the flash movie but the movie itself won't display. Before I had no problems displaying this movie. What's wrong in the code above? Thx, Ron
Myxt Web Solutions
http://www.myxt.nl
|