Is this possible?

What I am trying to do is create a movie clip that will load an external swf then control it from the _level0 movie. The problem I am running into is loading it into the right location. here is my code:



duplicateMovieClip(this.option,this.menu[context+"_"+optionnumber],this.getNextHighestDepth()); 
  trace(this.menu[context+"_"+optionnumber])
  
  

this traces out “undefined”

I know this.option has been loaded correctly
I know this.menu exists as an empty movieclip
[context+"_"+optionnumber] traces out as expected

It Works fine as an attachment from library using attachMovie, if *I *convert that library item to an external SWF then try to duplicate the movieclip into the same location it dosnt work.

does duplicateMovieClip not support what I am trying to do? Is there another way to acomplish this? Let me know thanks!