HU/isBrowserFocused: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function hu}} This function checks if a browser is focused. ==Syntax== <syntaxhighlight lang="lua"> bool isBrowserFocused ( browser webBrowser ) </syntaxhi...")
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function hu}}
{{Client function hu}}
This function checks if a browser is focused.
Ez a függvény leellenőrzi, hogy a böngésző a fókuszban van e.


==Syntax==
==Szintaxis==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool isBrowserFocused ( browser webBrowser )
bool isBrowserFocused ( browser webBrowser )
Line 9: Line 9:
{{OOP||[[Element/Browser|browser]]:isFocused}}
{{OOP||[[Element/Browser|browser]]:isFocused}}


===Required arguments===
===Kötelező argumentumok===
*'''webBrowser:''' The browser
*'''webBrowser:''' A böngésző


===Returns===
===Visszaadott érték===
Returns ''true'' if the browser is focused, ''false'' otherwise and ''nil'' if invalid arguments were passed.
''true'' ha a böngésző a fókuszban van, ''false'' egyébként és ''nil'' ha hibás argumentumok lettek megadva.


==Example==
==Példa==
This example creates a browser. If you press left control it will output to chatbox if the browser is focused or not.
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.
<section name="Example" class="client" show="true">
<section name="Example" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 36: Line 36:
==Lásd még==
==Lásd még==
{{CEF_functions_hu}}
{{CEF_functions_hu}}
==Fordította==
*'''WorthlessCynomys'''

Revision as of 10:25, 11 August 2018

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