I am able to invoke fullscreen using the FLVPlayback component like this
function fullscreen(event:MouseEvent):void{
if (this.stage.displayState == StageDisplayState.FULL_SCREEN)
this.stage.displayState=StageDisplayState.NORMAL;
else
this.stage.displayState=StageDisplayState.FULL_SCREEN;
}
The result was for the videoscreen to take up the full browser size.
However I am currently not using the component anymore and instead Im using netStream and the Video Class. When I click my fullscreen_btn the browser switches to fullscreen, however there is nothing in it. I think the problem is that no where within this code does it point to my video Class, but knowing this doesnt if i dont know what to do.
Anyone?