Unload movie (simple close button)

Working on my first effort of a Flash based site…

I’ve brought up a popup scroller with the script:

on (release) {
_root.createEmptyMovieClip(“container”, 2);
loadMovie(“popup_scroller.swf”, “container”);
container._x =19 ;
container._y =15 ;
}

To load the SWF popup_scroller.swf into level 2 where I want it.

I then added a CLOSE button to popup_scroller.swf such:

on (release) {
container.unloadMovie(2);
}

with the intention that this would empty ‘container’ of the popupscroller.swf

It doesn’t work - am I close or wildly off the mark?

My FLA file is at www.magicdot.co.uk/popup_scroller.fla

PS - any ideas on why KIRUPA’s tutorial on dynamically loaded text boxes, leaves a couple of blank lines at the top of the text area? (see my message bellow) http://www.kirupaforum.com/forums/showthread.php?t=71864

Regards,

Magicdot