IsTransferBoxActive

From Multi Theft Auto: Wiki
Revision as of 19:57, 16 February 2008 by Bardokas (talk | contribs) (Added example)
Jump to navigation Jump to search

This function returns whether the transferbox is visible or not.

Syntax

bool isTransferBoxActive ()

Returns

Returns true if the transferbox is visible, false if not.

Example

function OnClientResrcStart(resourcename)
	if(resourcename==getThisResource()) then
		CheckTransfere()
	end
end
function CheckTransfere()
	if isTransferBoxActive() == true then
		setTimer(CheckTransfere,2000,1) -- Check again after 2 seconds
	else fadeCamera(true) end -- TransferBox isnt active, fade in camera
end
addEventHandler("onClientResourceStart",getRootElement(),OnClientResrcStart)

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows