Just a quick note for when you are using Flash CS4 and your flvplayback component does not show on stage:

Be sure the constructor function of you as3 class does not have a return.

So instead of

class MyClass extends MovieClip {

public functionMyClass():void{
// stuff
return
}
}

you should use:

public class MyClass extends MovieClip{

public function MyClass(){
//stuff
}

}