OnClientTransferBoxVisibilityChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
Line 19: Line 19:
end)
end)
</syntaxhighlight>
</syntaxhighlight>
==Requirements==
{{Requirements|n/a|1.5.8-9.20788|}}


==See Also==
==See Also==

Latest revision as of 17:26, 7 November 2024

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

Parameters

boolean isVisible
  • isVisible: A boolean, indicating the new visibility status of the transfer box.

Source

The source of this event is the root element.

Example

This example prints the new visibility status of the transfer box when it changes (printing true or false):

addEventHandler ("onClientTransferBoxVisibilityChange", getRootElement(), function (isVisible)
    outputChatBox (tostring (isVisible))
end)

See Also

Client other events


Client event functions