# \*sigh\* External SWF Transition Problem

**URL:** https://forum.kirupa.com/t/sigh-external-swf-transition-problem/175945
**Category:** flash
**Created:** [January 19, 2006, 1:21am UTC](https://forum.kirupa.com/t/sigh-external-swf-transition-problem/175945 "2006-01-19T01:21:05Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mtmoore55](https://avatars.discourse-cdn.com/v4/letter/m/edb3f5/32.png) [@mtmoore55](https://forum.kirupa.com/u/mtmoore55)
#### Post date: [January 19, 2006, 1:21am UTC](https://forum.kirupa.com/t/sigh-external-swf-transition-problem/175945/1 "2006-01-19T01:21:05Z")

</div>

After going through the tutorial here and getting stuck, I’ve been trying to figure this out for the better part of the day with none of the other threads shedding much light on it.

Here is my problem: I have my navigation menu in a separate movieClip. I am using movieClips with invisible buttons for the buttons. I’ve added “\_root.” before “container” with no success. Here is the code I am using on the instances of the movieClips containing the invisible buttons:

```auto
on (release) {
	if (_root.currMovie == undefined) {
		_root.currMovie = "home";
		_root.container.loadMovie("home.swf");
	} else if (_root.currMovie != "home") {
		if (_root.container._currentframe >= _root.container.midframe) {
			_root.currMovie = "home";
			_root.container.play();
		}
	}
}

```

So I don’t know what’s up… if you have a few minutes and can solve my newbie problem, I’d be really appreciative. Here is a link to a zip w/ the files: [http://www.colditz-moore.com/matt/mueller/mueller.zip](http://www.colditz-moore.com/matt/mueller/mueller.zip)

Thank you thank you thank you.

matt
