HU/injectBrowserMouseUp

From Multi Theft Auto: Wiki
Revision as of 10:31, 11 August 2018 by Surge (talk | contribs) (Created page with "__NOTOC__ {{Client function hu}} {{New feature/item|3.0150|1.5|| This function injects a mouse click (state: up). }} ==Szintaxis== <syntaxhighlight lang="lua"> bool injectBr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function injects a mouse click (state: up).

Szintaxis

bool injectBrowserMouseUp ( browser webBrowser, string mouseButton )

OOP Syntax Help! I don't understand this!

Method: browser:injectMouseUp(...)


Kötelező argumentumok

  • webBrowser: The web browser
  • mouseButton: The mouse button (Possible values: left, middle, right)

Visszaadott érték

Returns true if the click was successfully injected, false otherwise.

Példa

addEventHandler("onClientClick", root,
	function(button, state)
		if state == "down" then
			injectBrowserMouseDown(browser, button)
		else
			injectBrowserMouseUp(browser, button)
		end
	end
)

Lásd még

Fordította

  • Surge