helper.getAllPlayerNames
Prototype
function getAllPlayerNames()
Return value
An array with the user names of all players in the game.
Description
Returns an array with the user names of all players in the game room.
Example code
// Print a list of all players in the game room
var players = getAllPlayerNames();
for (var i=0;i< players.length;i++)
{
trace("player "+i+" is "+players[i]);
}
