OnClientResourceFileDownload
Jump to navigation
Jump to search
This event is triggered every time a resource file download is queued, finished or has failed.
Parameters
resource fileResource, string fileName, number fileSize, string state
- fileResource: resource the file belongs to
- fileName: relative resource file path
- fileSize: size of the file in bytes
- state: possible values:
"queued"
or"finished"
or"failed"
Source
The source of this event is the resource's root element.
Example
This example will output the file's resource name/file name/size/state when downloading
function writeMsg(resourceName, fileName, fileSize, fileState) outputChatBox("Resource name: "..resourceName..", file name: "..fileName..", size: "..fileSize..", state: "..fileState) end addEventHandler("onClientResourceFileDownload", root, writeMsg)
Requirements
This template will be deleted.
See Also
Client resource events
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled