# Loading with Linkage from an external swf

**URL:** https://forum.kirupa.com/t/loading-with-linkage-from-an-external-swf/294964
**Category:** Uncategorized
**Created:** [August 23, 2009, 3:36pm UTC](https://forum.kirupa.com/t/loading-with-linkage-from-an-external-swf/294964 "2009-08-23T15:36:30Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Mental](https://avatars.discourse-cdn.com/v4/letter/m/c77e96/32.png) [@Mental](https://forum.kirupa.com/u/Mental)
#### Post date: [August 23, 2009, 3:36pm UTC](https://forum.kirupa.com/t/loading-with-linkage-from-an-external-swf/294964/1 "2009-08-23T15:36:30Z")

</div>

Hi,

I’m sure this will be a really easy problem to overcome but I can’t seem to work out how to do it. Can someone tell me how to access Movie Clips from the Library (that have been linkaged) in a swf that I have loaded in externally.

This is the function I am using to load the swf in itself.

```auto
private function Load_SWF(swf_to_load:String) {
	var container:MovieClip = _root.createEmptyMovieClip("container", _root.getNextHighestDepth());
	var mcLoader:MovieClipLoader = new MovieClipLoader();
	mcLoader.addListener(this);
	mcLoader.loadClip(swf_to_load, container);
}

```

Thanks,  
Mental.
