Hello Forum,
I have one problem calling a javascript function from flash.
My flash movie has a CLOSE button which calls a javascript function closeMovie();
Code in HTML is :
<script language=“JavaScript”>
function closeMovie(){
window.close();
}
</script>
It works fine. But problem is:
there is one more (HTML) button in the popup which is not inside flash. Clicking on it opens another popup. Now when the user first click on this button and then tries to close the window using the button which I have in Flash gives an error and doesnt close the window. (it refreshes the current popup with having TITLE for the window as javascript:closeMovie())
It seems parent/child issue. Has anyone faced similar kind of problems…do let me know any solution for this one…
Thanks in adv
aShIsH