GetResources: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Removed Template:Needs_Checking: You can't achieve it directly with getElementsByType, that returns a list of resource root elements.) |
||
Line 1: | Line 1: | ||
{{Server function}} | {{Server function}} | ||
__NOTOC__ | __NOTOC__ | ||
This function retrieves a table of all the resources that exist on the server. | This function retrieves a table of all the resources that exist on the server. | ||
Revision as of 15:39, 12 September 2007
This function retrieves a table of all the resources that exist on the server.
Syntax
table getResources ()
Returns
Returns a table of resources.
Example
This function lists all loaded resources in the console.
function displayResources() outputConsole("List of resources:") local resourceTable = getResources() -- get a table of resources for resourceKey, resourceValue in ipairs(resourceTable) do -- iterate through the table and output each resource's name local name = getResourceName(resourceValue) outputConsole(" " .. name) end end
See Also
- abortRemoteRequest
- call
- fetchRemote
- getResourceConfig
- getResourceDynamicElementRoot
- getResourceExportedFunctions
- getResourceFromName
- getResourceName
- getResourceRootElement
- getResourceState
- getThisResource
- getRemoteRequests
- getRemoteRequestInfo