world.GetNotepadList
Gets the list of open notepads - returning their titles
Prototype
VARIANT GetNotepadList(boolean All);
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
See also
| Function | Description |
|---|---|
| ActivateNotepad | Activates a notepad window |
| AppendToNotepad | Appends text to a notepad window |
| CloseNotepad | Closes a notepad window |
| GetNotepadLength | Gets the length of the text in a notepad window |
| GetNotepadText | Gets the text from a notepad window |
| ReplaceNotepad | Replaces text in a notepad window |
| SaveNotepad | Saves a notepad window to disk |
| SendToNotepad | Creates a notepad and sends text to it |