Follow up by the author. I have done some additional research on this topic and found that yes, I can add allowScriptAccess to swfObject as a parameter. However, being a js novice I am not exactly clear on the proper way to do this.
Would someone be so kind as to help me with the proper way to add it to the following: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>Jared Yeo MP3 Player</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="js/swfobject.js"></script> <script type="text/javascript"> swfobject.registerObject("mp3_player", "9.0.0", "expressInstall.swf"); </script> </head> <body> <div> <object id="mp3_player" classid="clsid:D27CDB6E- AE6D-11cf-96B8-444553540000" width="300" height="120"> <param name="movie" value="mp3.swf" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="mp3.swf" width="300" height="120"> <!--<![endif]--> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> <p><a href="#" onClick="mp3.playSong(0,0);">Jericho Road — Time</a></p> <p><a href="#" onClick="mp3.playSong(1,0);">Jericho Road — Deeper Still</a></p> </body> </html> Thank you. Forrest --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/swfobject?hl=en -~----------~----~----~----~------~----~------~--~---
