However, there is something that does need an update in the FLASH tutorial in my opinion.
W3Schools is all about validness in code, I suggest to update the tutorial to conform the Xhtml standard.
The whole embedding of a flash thing in an Xhtml valid cross-browser page is not quite that easy, so I have done a little research and found something really good:
http://alistapart.com/articles/flashsatayThis webpage goes through some steps to show you how to get this thing Xhtml valid and still working cross-browser.
It comes down to this:
QUOTE
<object type="application/x-shockwave-flash" data="movie.swf" width="400" height="300">
<param name="movie" value="movie.swf" />
<img src="noflash.gif" width="200" height="100" alt="" />
</object>
I hope this helps for making the tutorial show a Xhtml valid way of implementing FLASH.