Has anyone used this technique - SWFObject successfully? Saw this on the Deconcept blog - (blog.deconcept.com/swfobject). It allows you to embed a swf file into a js file, something like this:
-----------------------------
"<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent">
This text is replaced by the Flash movie.
</div>
<script type="text/javascript">
var so = new SWFObject("movie.swf", "mymovie", "200", "100", "7", "#336699");
so.write("flashcontent");
</script>
Prepare an HTML element that will hold your Flash movie. The content placed in the 'holder' element <div>place text here</div> will be replaced by the Flash content, so users with the Flash plug-in installed will never see the content inside this element. This feature has the added bonus of letting search engines index your alternate content.
-----------------------------
I know this is doable, but is it considered acceptable
SEO technique where Flash is concerned?