InjectBrowserMouseDown: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client_function}}
{{Client function}}
{{New feature/item|3.0150|1.5||
{{New feature/item|3.0150|1.5||
This function injects a mouse click (state: down).
This function injects a mouse click (state: down).
Line 9: Line 9:
bool injectBrowserMouseDown ( browser webBrowser, string mouseButton )
bool injectBrowserMouseDown ( browser webBrowser, string mouseButton )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[Element/Browser|browser]]:injectMouseDown||injectBrowserMouseDown}}
{{OOP||[[Element/Browser|browser]]:injectMouseDown}}


===Required arguments===
===Required arguments===
Line 19: Line 19:


==Example==
==Example==
<syntaxhighlight lang="lua">addEventHandler("onClientClick", root,
<syntaxhighlight lang="lua">
function(button, state)
addEventHandler("onClientClick", root,
if state == "down" then
    function(button, state)
injectBrowserMouseDown(browser, button)
        if state == "down" then
else
            injectBrowserMouseDown(browser, button)
injectBrowserMouseUp(browser, button)
        else
end  
            injectBrowserMouseUp(browser, button)
end)
        end  
    end
)
</syntaxhighlight>
</syntaxhighlight>
==See Also==
Todo


==See also==
==See also==
{{CEF_functions}}
{{CEF_functions}}
[[hu:injectBrowserMouseDown]]
[[RO:injectBrowserMouseDown]]

Latest revision as of 08:34, 20 April 2020

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

Syntax

bool injectBrowserMouseDown ( browser webBrowser, string mouseButton )

OOP Syntax Help! I don't understand this!

Method: browser:injectMouseDown(...)


Required arguments

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

Returns

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

Example

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

See also