i need to play a .swf flash file when i mouse over one of my links so
<a href="123.html" onMouseOver=" PLAY MY SWF ONCE ">123</a>
can you please help me achieve this using javascript
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You would need to use ExternalInterface to call an Actionscript function from your HTML page.
Have a look at the docs, they have better examples that what I could come up with in a few lines
http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/
But the general setup would be an Actionscript function to play the movie once and this function would be called from javascript via ExternalInterface.