vote up 0 vote down star

Hi,

I have a swf file that's embedded in a html page, and I have a close button in the swf page, I want the swf to disappear when I click on the button, what is the best way to do that? Thanks.

flag

53% accept rate

6 Answers

vote up 1 vote down

Write a JavaScript function that will hide the swf or its containing element, and call that function via the "close button" in the swf itself.

link|flag
vote up 1 vote down

Heres an article on how to get flash to call some JS on your page. If you never want it back (after hiding) i suggest you remove it from the DOM to release resources, as flash is expensive in client environments.

link|flag
vote up 1 vote down

I have done this with js, and to my horror, ie6 and ie7 just restart all sounds playing and keep them even when the whole html for the swf is gone (<object>, <embed>, <params> and event the <script> tags for the runner).

FireFox and Chrome perform as expected. Any ideas on how to prevent this behaviour?

link|flag
I don't have time or interest to try this now, but that's horrifying. +1! – yar Feb 15 at 16:20
vote up 0 vote down

How i can disable link in swf i dont hve fla file.

link|flag
vote up 0 vote down

If your ursing swfobject 2.1 to embed the swf you can use this built-in javascript swfobject.removeSWF() function:

function removeFlashFromHTML() 
{
 swfobject.removeSWF("id_of_your_html_object");
}

now you call the javascript function from flash using ExternalInterface:

function buttonClicked(evt:MouseEvent) 
{
 if (ExternalInterface.available) {
  ExternalInterface.call("removeFlashFromHTML()");
 }
}

for more information about SWFObject check this website

link|flag
vote up 0 vote down

yens resmann could you elaborate on your answer? I'm also trying to solve this same problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.