GetWorldIdList
Script function

world.GetWorldIdList

DOC_scripting Read about scripting

Type

Method

Summary

Gets the list of open worlds - returning their world IDs

Prototype

VARIANT GetWorldIdList();

DOC_data_types View list of data type meanings


Description

Returns a variant array which is a list of the identifiers (IDs) of all open worlds.

This is safer than using GetWorldList because multiple worlds might have the same name.



VBscript example

for each id in world.GetWorldIdList
  world.note id
next



Jscript example

worldlist = new VBArray(world.GetworldIdList()).toArray();

if (worldlist)  // if not empty
 for (i = 0; i < worldlist.length; i++)
   Note (worldlist [i]);



PerlScript example

foreach $item (Win32::OLE::in ($world->GetWorldIdList))
 {
 Note ($item);
 }



Python example

worldlist = world.GetworldIdList
if (worldlist ):
  for w in worldlist : world.Note (w)



Lua example

-- --------------------------------------------------
-- Example showing sending a message all worlds
-- --------------------------------------------------

function SendToAllWorlds (message)

  for k, v in pairs (GetWorldIdList ()) do 
    GetWorldById (v):Send (message)
  end
end

SendToAllWorlds ("say Hi there")



Lua notes

See the description for GetWorld for more discussion about using "world" variables in Lua.



Return value

If there are no worlds then the return value is empty. Use "IsEmpty" to test for this possibility.

Otherwise, it returns a variant array containing the Ids of all the worlds. Use "ubound" to find the number of worlds in the list. You can then use "GetWorldById" to return a reference to that world.




See Also ...

Topics

DOC_scripting Scripting
DOC_world World functions

Functions

FNC_GetWorld GetWorld (Gets an object reference to the named world)
FNC_GetWorldById GetWorldById (Gets an object reference to the world given its unique ID)
FNC_GetWorldList GetWorldList (Gets the list of open worlds - returning their world names)
FNC_Open Open (Opens a named document)
FNC_OpenBrowser OpenBrowser (Opens a supplied URL in your default web browser)

(Help topic: function=GetWorldIdList)

DOC_contents Documentation contents page