IsTransferBoxActive

From Multi Theft Auto: Wiki
Revision as of 12:45, 17 February 2008 by EAi (talk | contribs)
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

This will camera fade in, when resource transfere will be finished.

resourceRoot = getResourceRootElement(getThisResource())
function checkTransfer()
	if isTransferBoxActive() == true then
		setTimer(checkTransfer,2000,1) -- Check again after 2 seconds
	else 
		fadeCamera(true)  -- TransferBox isnt active, fade in camera
	end
end
addEventHandler("resourceStart",resourceRoot,checkTransfer)

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