Hello currently I am showing some .swf files inside my website but I don't know if I have left any case for potential security flaws or if the way I am using the swf files isnt correct for all browsers or slows down the page not sure if im doing it right.
This is the code I have now:
<object width="200" height="300" data="album.swf"></object>
I read on this post: How to embed a SWF file in an HTML page?
I am puzzled because the above method mentioned on the post appears to slow down the website with the javascript calling and all.
What is your opinion? Why do they use swfobject?
Edit: Is this correct?
<embed allowScriptAccess="never" allownetworking="none" src="album.swf" type="application/x-shockwave-flash" quality="high" width="750" height="463" name="Album" />
Thank you!