DeleteResource: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
==Example== | ==Example== | ||
This example checks to see if there's 2 resources. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- | addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), | ||
function() | |||
resources = getResources() --Get all resources | |||
if (getResourceState(resource) == "loaded" and "running" or "loaded" and "starting") then --Checks to see if there's to resources that's loaded and running or loaded and starting up | |||
stopResource(resource) | |||
deleteResource(resource) | |||
end | |||
end) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} |
Revision as of 23:33, 16 November 2011
Script Example Missing Function DeleteResource needs a script example, help out by writing one. | |
Before submitting check out Editing Guidelines Script Examples. |
This function deletes a resource.
Syntax
bool deleteResource ( string resourceName )
Required Arguments
- resourceName: The name of resource to delete.
Returns
Returns true if the resource has been deleted successfully, false otherwise.
Example
This example checks to see if there's 2 resources.
addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), function() resources = getResources() --Get all resources if (getResourceState(resource) == "loaded" and "running" or "loaded" and "starting") then --Checks to see if there's to resources that's loaded and running or loaded and starting up stopResource(resource) deleteResource(resource) end end)
Requirements
This template will be deleted.
See Also
- abortRemoteRequest
- call
- fetchRemote
- getResourceConfig
- getResourceDynamicElementRoot
- getResourceExportedFunctions
- getResourceFromName
- getResourceName
- getResourceRootElement
- getResourceState
- getThisResource
- getRemoteRequests
- getRemoteRequestInfo