StageDisplayState.FULL_SCREEN_INTERACTIVE

I’m seeing a lot of examples around the web that use

[AS]
stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE
[/AS]

to set an AIR application to full screen mode, with interactivity.

One such example from Adobe is here:

http://livedocs.adobe.com/air/1/devappsflash/help.html?content=WorkingWithWindows_6.html

It is also included in the AS3 API docs:

http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/StageDisplayState.html#FULL_SCREEN_INTERACTIVE

However, the static value “FULL_SCREEN_INTERACTIVE” does not actually seem to exist within the Flex/AIR SDK. In both FDT and the Flash IDE, a value of “FULL_SCREEN” is recognised, but “FULL_SCREEN_INTERACTIVE” is not a declared property of StageDisplayState.

Can anyone shed any light on this? I’m starting to feel like it may have been dropped from the API, or possibly simply replaced with “FULL_SCREEN”, but if that is the case, Adobe’s documentation certainly needs to be updated.