hey guys,
Don't know if you have solved this problem yet but i have checked out the swfobject and it seems to complicated, I have a much easier solution and it is tested....
Just paste the following code into a file called removeline.js
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects.outerHTML = theObjects.outerHTML;
}
then paste the following script at the end of each page where you have a flash movie, preferebly just before the </body> tag:
<script type="text/javascript" src="removeline.js"></script>