StageDisplayState.FULLSCREEN vs StageDisplayState.FULLSCREEN_INTERACTIVE
What's the differe开发者_Go百科nce between the the two display states?
StageDisplayState.FULL_SCREEN
doesn't support keyboard interactivity. StageDisplayState.FULL_SCREEN_INTERACTIVE
does, but it works only with Adobe AIR.
Source: Adobe ActionScript3 Reference
StageDisplayState.FULLSCREEN
is available in both AIR and normal Flex web apps, Keyboard is not tracedStageDisplayState.FULLSCREEN_INTERACTIVE
available ONLY IN AIR and it allows you to used the keyboard. for ex you can type inside a TextInput in FS only with FullScreenInteractive.
StageDisplayState.FULL_SCREEN_INTERACTIVE can work in flex webapp.when you compile web app,you just need to replace the playerglobal.swc by high version,like 11.7。。。 hope it helps you
精彩评论