Hey,
i want to write the object-tags and stuff without giving a container
for it.
This is what you normally have to write to use SWFObject:
<div id='ad728'> </div>
<script type="text/javascript">
var so = new SWFObject("swfFile.swf", "728x90", "728", "90", "8",
"#000000");
so.addParam("quality", "high");
so.addParam("base", "../bloodbowl/");
so.addParam("wmode", "transparent");
so.addVariable("clickTAG", "
http://www.bloodbowl-game.com");
so.write('ad728');
</script>
So the SWFObject will be written into the DIV with the id 'ad728'.
But i want to use it like this:
<script type="text/javascript">
var so = new SWFObject("swfFile.swf", "728x90", "728", "90", "8",
"#000000");
so.addParam("quality", "high");
so.addParam("base", "../bloodbowl/");
so.addParam("wmode", "transparent");
so.addVariable("clickTAG", "
http://www.bloodbowl-game.com");
so.write();
</script>
So i dont need to set a container for the SWFObject and can directly
write the content where i call the function.
I hope you unterstand what i mean. I am not that good in english..
Gr33tZ
Rn