Flash Media Server Developer Documentation

Client.id

clientObject.id

Read-only; a string that uniquely identifies the client.

Availability

Flash Media Server 3

Example

The following onConnect() function traces the ID of the connecting client:

application.onConnect(newClient) {
    trace(newClient.id);
}