
Originally Posted by
Gerjan
Firefox, but not in IE8... and thats what this post was all about ;-)
I wouldn't answer if I didn't want to help, but I can't read minds. With flash I have to download the swf, run it through a decompiler to see the code to even begin to figure out where or what needs to change.
But, this is what I can say from looking at your page... Up grade your SwfObject to 2.0 or higher, version 1 didn't play will with others. Rename SwfObject.js to jscript_swfobject.js and save it to (includes\templates\YOUR_TEMPLATE\jscript) this will let it load in the header of your page and be there for all pages. If you do a background color, this wont work 'wmode = "transparent"'
Once you upgrade to SwfObject 2, and load it into the header, something like this would work..
Code:
<script type="text/javascript">
var flashvars = {};
var params = {};
params.allowscriptaccess = "always";
params.wmode = "transparent";
var attributes = {};
swfobject.embedSWF("http://www(dot)pannenland(dot)nl/includes/templates/pannen/images/header_bg.swf", "flashcontent", "950", "150", "9.0.0", false, flashvars, params, attributes);
</script><div id="flashcontent">Add something here if scripts is off!!! Image maybe</div>
Next... anything less then Flash version 9 is considered not safe to run if it does anything other then looking purity. So, flv's are out if your not coding to version 9. I think IE7 and above will not run flv's at all unless you code to version 9 or 10. Firefox may run some of the code, but will limit the swf. If you can get Flash CS3 you can resolve many of the issues by coding with action script 2 or 3
Maybe you can give me a hint? Not asking for a solution, not afraid for some puzzeling, but I'm kinda stuck now
Many folks are having the same problem with IE, coding to version 9 is what fixed mine with clicktags. I hope that helps you to get unstuck..