OnClientTransferBoxVisibilityChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
(added example)
Line 12: Line 12:
The [[event system#Event source|source]] of this event is the [[root element]].
The [[event system#Event source|source]] of this event is the [[root element]].


==Example==
==Example==
{{Needs_Example}}
<section name="Client" class="client" show="true">
This example executes a print(true) if it is active, otherwise print(false).
<syntaxhighlight lang="lua">
addEventHandler('onClientTransferBoxVisibilityChange', getRootElement(), function(isVisible)
    outputChatBox (isVisible)
end)
</syntaxhighlight>
</section>


==Requirements==
==Requirements==

Revision as of 21:55, 5 June 2021

This event is triggered every time the resource file downloader (aka. transfer box) is shown or hidden by MTA.

Parameters

boolean isVisible
  • isVisible: boolean, whether the transfer box is visible now

Source

The source of this event is the root element.

Example

Click to collapse [-]
Client

This example executes a print(true) if it is active, otherwise print(false).

addEventHandler('onClientTransferBoxVisibilityChange', getRootElement(), function(isVisible)
    outputChatBox (isVisible)
end)

Requirements

Minimum server version
Minimum client version 1.5.8-9.20788

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="" client="1.5.8-9.20788" />

See Also

Client other events


Client event functions