# Page Transitions

**URL:** https://forum.kirupa.com/t/page-transitions/294464
**Category:** Uncategorized
**Created:** [August 14, 2009, 10:14am UTC](https://forum.kirupa.com/t/page-transitions/294464 "2009-08-14T10:14:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![olivercoquelin](https://avatars.discourse-cdn.com/v4/letter/o/919ad9/32.png) [@olivercoquelin](https://forum.kirupa.com/u/olivercoquelin)
#### Post date: [August 14, 2009, 10:14am UTC](https://forum.kirupa.com/t/page-transitions/294464/1 "2009-08-14T10:14:21Z")

</div>

Hi

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

[http://www.kirupa.com/developer/mx2004/transitions2.htm](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:

```auto
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
