# Load ....i am going insane

**URL:** https://forum.kirupa.com/t/load-i-am-going-insane/13146
**Category:** Uncategorized
**Created:** [February 9, 2003, 5:49pm UTC](https://forum.kirupa.com/t/load-i-am-going-insane/13146 "2003-02-09T17:49:17Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![max999](https://avatars.discourse-cdn.com/v4/letter/m/ac91a4/32.png) [@max999](https://forum.kirupa.com/u/max999)
#### Post date: [February 9, 2003, 5:49pm UTC](https://forum.kirupa.com/t/load-i-am-going-insane/13146/1 "2003-02-09T17:49:17Z")

</div>

I am trying to load an external swf called f into the main time line of a another swf called index wich is my main and i am having this problems:  
there are many bottons on my main and when i load that into a target f since the bottons are on diffferent parts of the main they would show up under f but are still active and if somebody hit them they would unload the f.  
i tryed loading into a level but i still have the same problem  
or i can just load one movie into the other and viceversa but it doesn’t look good.  
also on the f i have some bottons that interact with index and so i really think that i need to load that into a level but how could i either mask or deactive the buttons on index?  
thank everybody in advance there’s probably an easy solution but as i already said many times flash is just an hobby of main and i am just a total beginner.  
eveything is on flash mx and the player is flash 6

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 9, 2003, 6:06pm UTC](https://forum.kirupa.com/t/load-i-am-going-insane/13146/2 "2003-02-09T18:06:28Z")

</div>

```auto
MovieClip.prototype.enable = function (action) {
	for (var clips in this) {
		if (typeof this[clips] == "movieclip" || typeof this[clips] == "object") {
			this[clips].enabled = action
		}
	}
}

```

to disable buttons and movie clips in some level

```auto
_level#.enable (false)

```

to enable buttons and movie clips in some level

```auto
_level#.enable (true)

```

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 9, 2003, 9:03pm UTC](https://forum.kirupa.com/t/load-i-am-going-insane/13146/3 "2003-02-09T21:03:42Z")

</div>

thanks a lot  
massimo
