world.GetNotepadList

MUSHclient script function (Method) — introduced in version 4.08

Gets the list of open notepads - returning their titles

Prototype

VARIANT GetNotepadList(boolean All);

Data type meanings

Description

Returns a variant array which is a list of all open notepad windows.

If more than one notepad has the same title you may get duplicates.

If the argument (All) is true, then all notepad windows for the MUSHclient application are returned.

If the argument is false, then only "related" notepads for the current world are returned. Related notepads are those created from the world (eg. by AppendToNotepad), and are not ones manually created (eg. by the player).

Note that most notepad-related functions only apply to related notepads - that is, ones that "belong" to the world calling them.

VBscript example

for each name in world.GetNotepadList
  world.Note name
next

Jscript example

notepadlist = new VBArray(world.GetNotepadList()).toArray();

if (notepadlist )  // if not empty
 for (i = 0; i < notepadlist.length; i++)
   world.note(notepadlist [i]);

PerlScript example

foreach $item (Win32::OLE::in ($world->GetNotepadList))
 {
 $world->note($item);
 }

Python example

notepadlist = world.GetNotepadList
if (notepadlist):
  for w in notepadlist : world.Note (w)

Lua example

for k, v in pairs (GetNotepadList()) do 
  Note (v) 
end

Lua notes

The argument "All" is optional, and defaults to false.

Return value

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

Otherwise, it returns a variant array containing the titles of all the notepads. Use "ubound" to find the number of notepads in the list.

Related topic

Notepad

See also

FunctionDescription
ActivateNotepadActivates a notepad window
AppendToNotepadAppends text to a notepad window
CloseNotepadCloses a notepad window
GetNotepadLengthGets the length of the text in a notepad window
GetNotepadTextGets the text from a notepad window
ReplaceNotepadReplaces text in a notepad window
SaveNotepadSaves a notepad window to disk
SendToNotepadCreates a notepad and sends text to it