Flash SWF Links in HTML page no longer function

Issue:
If you embed a Flash SWF on your website and find that Links or Redirects within the Flash do not work.  This is due to a security restriction in the Browser Flash Player.  For more details see Adboe TechNote: http://kb2.adobe.com/cps/000/50c1cf38.html 

Solution:
The easiest fix is to specify AllowScriptAccess="always" in the HTML page as in this example:
--
<object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase=" http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" >
<param name="movie" value="/exampleContent.swf">
<param name="allowScriptAccess" value="always">
<embed type="application/x-shockwave-flash"
pluginspage=http://www.adobe.com/go/getflashplayer
href="/exampleContent.swf"
allowScriptAccess="always"></embed>
</object>
--