Page Transitions

Hi

I have just used the very useful tutorial on page transitions:

http://www.kirupa.com/developer/mx2004/transitions2.htm

It’s almost working perfectly apart from some additional buttons I’m using which are inside nested movie clips. I need to change the path to the container movie clip but my attempts so far have failed. Think I put it in the wrong place. The path is Scene 1 / print-work-fade / print_work. The buttons I am adding the code to are on print_work.swf.

Here is the actionscript which is placed on the buttons:

on (release) {
	if (_root.currMovie == undefined) {
		_root.currMovie = "corporate-id-fade";
		container.loadMovie("corporate-id-fade.swf");
	} else if (_root.currMovie != "corporate-id-fade") {
		if (container._currentframe >= container.midframe) {
			_root.currMovie = "corporate-id-fade";
			container.play();
		}
	}
}

Could anyone please tell me how I change the paths to make the buttons reach the container_mc on Scene 1?

Thanks in advance.
Olly