Packageplayerio
Interfacepublic interface Client

An instance of this class is returned to the callback function when successfully connecting to the PlayerIO webservice. Contains references to all APIs currently exposed by the PlayerIO ActionScript API

See also

PlayerIO.connect


Public Properties
 PropertyDefined By
  bigDB : BigDB
[read-only] Collection used to access the BigDB service.
Client
  connectUserId : String
[read-only] User id of the currently connected user
Client
  errorLog : ErrorLog
[read-only] Collection used to access the Error log
Client
  gameFS : GameFS
[read-only] Collection used to access the GameFS service.
Client
  multiplayer : Multiplayer
[read-only] Collection used for Multiplayer games
Client
  partnerPay : PartnerPay
[read-only] Collection used to access the PartnerPay service.
Client
  payVault : PayVault
[read-only] Collection used to access the PayVault service.
Client
  stage : Stage
[read-only] Reference to the stage the Client is connected to
Client
Property Detail
bigDBproperty
bigDB:BigDB  [read-only]

Collection used to access the BigDB service.


Implementation
    public function get bigDB():BigDB

Example
Example of how to request the file game.swf from your games GameFS via client
             var url:String = client.gameFS.getURL("game.swf")
         
connectUserIdproperty 
connectUserId:String  [read-only]

User id of the currently connected user


Implementation
    public function get connectUserId():String
errorLogproperty 
errorLog:ErrorLog  [read-only]

Collection used to access the Error log


Implementation
    public function get errorLog():ErrorLog
gameFSproperty 
gameFS:GameFS  [read-only]

Collection used to access the GameFS service.


Implementation
    public function get gameFS():GameFS
multiplayerproperty 
multiplayer:Multiplayer  [read-only]

Collection used for Multiplayer games


Implementation
    public function get multiplayer():Multiplayer
partnerPayproperty 
partnerPay:PartnerPay  [read-only]

Collection used to access the PartnerPay service.


Implementation
    public function get partnerPay():PartnerPay
payVaultproperty 
payVault:PayVault  [read-only]

Collection used to access the PayVault service.


Implementation
    public function get payVault():PayVault
stageproperty 
stage:Stage  [read-only]

Reference to the stage the Client is connected to


Implementation
    public function get stage():Stage