PDA

View Full Version : (MX)need AS to close external swf



Eyeball
May 21st, 2003, 12:24 PM
I have an external.swf that behaves like a pop up window but have no clue how to turn it off, so my question is what AS i add to a button that would close this window

thx a lot

kode
May 21st, 2003, 05:17 PM
there's a couple of things you could try...

set its _visible property to false.
use MovieClip.unloadMovie.
or if you attached or duplicated the movieclip you can use MovieClip.removeMovieClip.

;)