Controlling external .swf

Is there a way to control the playback of an externally loaded .swf?

I’m using the MovieClipLoader class to bring an external .swf into my “main nav” .swf, and I would like to allow the user to pause and resume playback of the external .swf.

How might I accomplish this?

here’s what I have so far:

 
this.createEmptyMovieClip("mcHolder", this.getNextHighestDepth());
var mclLoader:MovieClipLoader = new MovieClipLoader();
var oListener:Object = new Object();
oListener.onLoadComplete = function(bSuccess:Boolean):Void {
  if(bSuccess){
      // something really cool.
  }
};
mclLoader.loadClip("myexternalmovie.swf", mcHolder);
mclLoader.addListener(oListener);
 
mcPauseButton.onRelease = function():Void {
    // someway to pause "myexternalswf.swf"
};
mcPlayButton.onRelease = function():Void {
    // someway to play "myexternalswf.swf"
};

Thanks in advance for any insight!!