# External swf functionality problem

**URL:** https://forum.kirupa.com/t/external-swf-functionality-problem/297335
**Category:** Uncategorized
**Created:** [September 30, 2009, 1:06pm UTC](https://forum.kirupa.com/t/external-swf-functionality-problem/297335 "2009-09-30T13:06:08Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![goeiste](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/goeiste/32/2741_2.png) [@goeiste](https://forum.kirupa.com/u/goeiste)
#### Post date: [September 30, 2009, 1:06pm UTC](https://forum.kirupa.com/t/external-swf-functionality-problem/297335/1 "2009-09-30T13:06:08Z")

</div>

Hello,

For a webservice i’m building a website that functions as a shell for certain service, which are loaded externally…The code I use for importing the external swf’s is as follows:

```auto
function loadComponent(swf)
{
	var request:URLRequest = new URLRequest(swf);
	var loader:Loader = new Loader();
	loader.load(request);
	components_mc.addChild(loader);
}

```

So far so good…the external swf is loaded and functions ok on first glance…However, there is a problem with some buttons…I have a menu with five buttons (blue buttons with a different colour shade). These buttons function well (are accessible) when the swf operates stand alone. When I embed the swf, the top three buttons don’t function properly(are not accessible)…I cant even guess for the reason.

I uploaded the example for the stand alone version and the embedded version:

[stand alone](http://www.m-and-a-explained.com/intent/)  
[embedded](http://www.m-and-a-explained.com/obp/)

In the embedded version click in the menu on: phase 1 \> intent

anybody got any ideas?
