Wrapper for Flash System.capabilities properties and more.
Uses to retrieve Flash Player version, screen resolution and client platform.
Example
var client : ClientContext = Fever.client; FeverDebug.INFO( client.player ); FeverDebug.INFO( "Flash 8 compliant : " + ( client.player.major >= 8 ) ); FeverDebug.INFO( "Is standAlone player : " + ( client.player.type == ClientPlayerType.STANDALONE ) ); FeverDebug.INFO( "Is Windows OS : " + ( client.platform == ClientPlatform.WINDOWS ) ); FeverDebug.INFO( "Screen size : " + client.screen );
public avHardwareDisable:Boolean [Read Only]public hasAccessibility:Boolean [Read Only]public hasAudio:Boolean [Read Only]public hasMP3:Boolean [Read Only]public hasPrinting:Boolean [Read Only]public language:String [Read Only]public localFileReadDisable:Boolean [Read Only]public player:ClientPlayer [Read Only]public screen:ClientScreenpublic platform:Number [Read Only]static public function getInstance():ClientContextReturns ClientContext instance.
Always return the same instance.