The plot thickens...
Following an upgrade to CS4, enterFullScreenDisplayState is now present in FLVPlaybackAS3.swc > video > FLVPlayback. HOWEVER... the method remains unavailable at compilation.
In case I'm missing anything, here are the relevant (albeit abbreviated) bits:
import fl.video.*;
public var flvPlayback:FLVPlayback;
public function VideoSexy() {
addEventListener(Event.ADDED_TO_STAGE, init);
}
private function init(e : Event = null) : void {
removeEventListener(Event.ADDED_TO_STAGE, init);
checkFlashVars()
setControls();
flvPlayback.registrationY = 0;
flvPlayback.align = VideoAlign.TOP;
flvPlayback.getVideoPlayer(flvPlayback.activeVideoPlayerIndex).smoothing = true;
flvPlayback.enterFullScreenDisplayState();
}
Yes, flvPlayback is onstage in the IDE.
Both FP9 and FP10 throw a reference error.