Welcome
ExplorerList
1.0.0.0
Freeware
Dean Hall (AKA) RizlaUK
www.luadevils.com
rizlauk@luadevils.com
ExplorerList.SetPath
ExplorerList.GetPath
ExplorerList.GetSelected
ExplorerList.SetPattern
ExplorerList.DropFilesAccept
ExplorerList.SetView
ExplorerList.SetPath ( | (string) ObjectName, (string) Path ) |
Sets the currently displayed directory.
(string) The name of the object.
(string) The full path to the directory to display.
This action dose not return any value.
(string) ExplorerList.GetPath ( | (string) ObjectName ) |
Gets the currently displayed directory.
(string) The name of the object.
(string) The full path to the current displayed directory, if any error, a blank string ("") is returned.
(table) ExplorerList.GetSelected ( | (string) ObjectName ) |
Gets information about the selected item.
(string) The name of the object.
(table) A table index by the values "Name" and "Type", if any error, nil is returned.
tSel = ExplorerList.GetSelected("ExplorerList_0");
if tSel then
Dialog.Message("Selected Item", "Name="..tSel.Name.."\r\nType="..tSel.Type)
end
ExplorerList.SetPattern ( | (string) ObjectName, (string) Pattern ) |
Sets the currently displayed file pattern.
(string) The name of the object.
(string) The file pattern/s to display (EG: "*.txt;*.lua")
This action dose not return any value.
ExplorerList.DropFilesAccept ( | (string) ObjectName, (boolean) Enable ) |
Enablers the user to drop a file onto the object.
(string) The name of the object.
(boolean) True to enable file drop, false to disable it.
This action dose not return any value.
ExplorerList.SetView ( | (string) ObjectName, (number) ViewMode ) |
Sets the currently display mode.
(string) The name of the object.
(number) The desired view mode..
CONSTANT | VALUE | DESCRIPTION |
EXPLORER_LARGEICON | 0 | Large icon mode. |
EXPLORER_SMALLICON | 1 | Small icon mode. |
EXPLORER_LIST | 2 | List icon mode. |
EXPLORER_REPORT | 3 | Report mode (columns, default mode). |
This action dose not return any value.
This File Was Generated With AMS ActionFile Editor