HU/isBrowserFocused

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

Ez a függvény leellenőrzi, hogy a böngésző a fókuszban van-e.

Szintaxis

bool isBrowserFocused ( browser webBrowser )

OOP Syntax Help! I don't understand this!

Method: browser:isFocused(...)


Kötelező argumentumok

  • webBrowser: A böngésző

Visszaadott érték

true ha a böngésző a fókuszban van, false egyébként és nil ha hibás argumentumok lettek megadva.

Példa

Ez a példa létrehoz egy böngészőt. Ha megnyomod a bal ctrl-t, kiírja a chat-be, hogy a böngésző a fókuszban van-e vagy sem.

Click to collapse [-]
Example
local theBrowser = guiCreateBrowser ( 150, 150, 1280, 720, true, false, false)
addEventHandler("onClientKey", localPlayer,
	function(button, state)  -- adds the event handler.
		if button == "lctrl" and state = "down" then -- if the pressed key is lctrl and the state is down then we will check is the browser focused or not. 
			if isBrowserFocused(theBrowser) then
				outputChatbox("the browser is focused.") -- if the browser is focused then we will write this to chatbox.
			else
				outputChatbox("the browser is not focused.")-- if the browser is not focused then we will write this to chatbox.
			end
 		end
	end
)

Lásd még

GUI Függvények


Fordította

  • WorthlessCynomys