Hi
I need a bit of help with FLVPlayback.

I have a thumbnails that swap content like this ....
code:

import mx.video.*;
function LoadVideo(target) {
ContentLoader();
_root.attachMovie("FLVPlayback", "my_FLVPlybk", _root.getNextHighestDepth(), {width:320, height:240, x:100, y:100});
my_FLVPlybk._alpha = 0;
my_FLVPlybk.skin = "vidskin.swf";
my_FLVPlybk.autoPlay = false;
my_FLVPlybk.contentPath = target;
my_FLVPlybk.seek(0);
var listenerObject:Object = new Object();
listenerObject.ready = function(eventObject:Object):Void {
my_FLVPlybk.setSize(my_FLVPlybk.preferredWidth, my_FLVPlybk.preferredHeight);
FitVideoContent(my_FLVPlybk);
};
my_FLVPlybk.addEventListener("ready", listenerObject);
}


.... and every time a thumbnail is clicked I also first trigger the below script to delete the old FLVPlayback ....
code:

my_FLVPlybk.removeMovieClip();
my_FLVPlybk.removeListener(listenerObject);



I can see that this script is deleting the component in the debugger, but it looks like the actual stream, or the load, isn't being halted. If I click two thumbs in quick succession, the correct preferredWidth and Height properties are not being read, and my FitVideoContent function (resizes a frame) isn't working.

So, how can I stop the load of the flv completely, so that the script will be solid if a different thumb is clicked quickly?

thanks
mark