Loading Veoh Videos in my flash file

Hi,

I am trying to load the Veoh swf file into my swf file.

The Veoh URLs are of the form:
http://www.veoh.com/videodetails.swf?permalinkId=v293389ByXCryKE&id=1&player=videodetails&videoAutoPlay=0

Now, whenever I do -
_root.loadMovie(“http://www.veoh.com/videodetails.swf?permalinkId=v293389ByXCryKE&id=1&player=videodetails&videoAutoPlay=0”);
Everything works fine.

But, I want this to be loaded inside of a small movie on stage
So, when I do -
_root.subMovie.loadMovie(“http://www.veoh.com/videodetails.swf?permalinkId=v293389ByXCryKE&id=1&player=videodetails&videoAutoPlay=0”);

It keeps giving some security errors and never works.

Ideally, I wanted it to work with movieClipLoader(). But, even with that it gives the same errors:

_root.createEmptyMovieClip(“image_mc”, 1);
var mclListener:Object = new Object();
mclListener.onLoadInit = function(target_mc:MovieClip) {
trace("_url: "+target_mc._url);
};
var image_mcl:MovieClipLoader = new MovieClipLoader();
image_mcl.addListener(mclListener);
image_mcl.loadClip(“http://www.veoh.com/videodetails.swf?permalinkId=v293389ByXCryKE&id=1&player=videodetails&videoAutoPlay=0”, image_mc);

Anyone has any thoughts / expertise to get it to work?

Please let me know.

Thank you,
Mandy.