FLV Buffer MC

Hiya,

I would like a custom MC to be visible when an FLV is buffering, and then go invisible when not buffering.

I have this script:

var isBuffering:Object = new Object();
isBuffering.stateChange = function(eventObject:Object):Void {
if(hellohello.buffering){
_root.bufferingMC._visible = true;

}

};
hellohello.addEventListener(“stateChange”, isBuffering);

(hellohello is the name of my video on the stage.)

This script works just fine for making the clip visible when buffering.

How would I go about making it invisible when the clip is not buffering?

Any help would be most appreciated.