Multiuser Lingo Dictionary > Multiuser Lingo Dictionary > list

 

list

Syntax

thread().list

Description

Multiuser Server server-side function; creates a list of the objects that exist in the current thread. This list reflects the threads in existence at the moment the list is tested. Thread objects are not automatically added to or deleted from this list as they come into and go out of existence. To update the list, test it again.

Example

These server-side statements put the thread object list into the variable currentObjects and return the value to the handler that called them:

currentObjects = thread().list
return currentObjects