[Flash8] onRelease not working for createEmptyMovieClip

Can anyone explain to me why this code doesn’t work?

Its suppose to create a Movie called container which has a text field in it then when the container movie clip is clicked on “Goodbye World” pops up in the trace window.

So far the only thing this code does is display “Hello World” but no action is taken when it is clicked on. Why is this?

var container:MovieClip = this.createEmptyMovieClip("container", this.getNextHighestDepth());
var label:TextField = this.createTextField("label", 1, 0, 0, 150, 20);
label.text = "Hello World";
container.onRelease = clickHandler;
	
function clickHandler():Void {
	trace("Goodbye World");
}

Thank you
Graeme