Getting External FLV's to be paused

Hi, I am having issues with MovieClips linking to HTML files on Firefox and I think part of the problem may be that the links aren’t working in Firefox because of the browser waiting for the video to load. Here is my code:

container.addChild(vid);
vid.autoPlay=false;
vid.source=“video3.flv”;
vid.skin=“SkinOverPlaySeekStop.swf”;
vid.skinBackgroundColor = 0x555555;
vid.skinBackgroundAlpha = 0.7;
vid.height=480;
vid.width=640;
vid.x=305;
vid.y=90;

The vid.autoPlay=false; does seem to do anything.