A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
game — Property in interface Andrograde.API
returns the game code for this game
game — Property in class Andrograde.APIClient
returns the game code for this game
getHighScores(stat, type, startingOffset, howMany, callback) — Method in interface Andrograde.API
Fetches a list of highscores of a certain stat from the server calls 'callback(highscores:Array):void' when it's done where result is a 2d array of name/value pairs
getHighScores(stat, type, startingOffset, howMany, callback) — Method in class Andrograde.APIClient
Fetches a list of highscores of a certain stat from the server calls 'callback(highscores:Array):void' when it's done where result is a 2d array of name/value pairs
getIdentity(name, callback) — Method in interface Andrograde.API
Resolves a name to all matching identities in the system calls 'callback(identities:Array):void' (identities=null if failed)
getIdentity(name, callback) — Method in class Andrograde.APIClient
Resolves a name to all matching identities in the system calls 'callback(identities:Array):void' (identities=null if failed)
getRank(stat, type, callback) — Method in class Andrograde.User
Gets the rank of this user in regards to a particular stat
Note: This is 1 based (1st, 2nd, 3rd ...) so you will need to subtract 1 to correlate it with the highscores array returned by API.getHighScores
calls 'callback(ronk:uint):void' when it's done (rank = 0 if there is an error)
getStat(statName) — Method in class Andrograde.User
Checks the value of a stat for this user
getUserInfo(identity, callback) — Method in interface Andrograde.API
gets the stats from the server for any user
calls 'callback(user:User):void' user= null if failed
getUserInfo(identity, callback) — Method in class Andrograde.APIClient
gets the stats from the server for any user
calls 'callback(user:User):void' user= null if failed
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z