InjectBrowserMouseDown: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Add missing argument)
 
(9 intermediate revisions by 7 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 7: Line 7:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool injectBrowserMouseDown ( browser webBrowser, string mouseButton )
bool injectBrowserMouseDown ( browser webBrowser, string mouseButton [, bool doubleClick = false ] )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[Element/Browser|browser]]:injectMouseDown||injectBrowserMouseDown}}
{{OOP||[[Element/Browser|browser]]:injectMouseDown}}


===Required arguments===
===Required arguments===
*'''webBrowser:''' The web browser
*'''webBrowser:''' The web browser
*'''mouseButton:''' The mouse button (Possible values: ''left'', ''middle'', ''right'')
*'''mouseButton:''' The mouse button (Possible values: ''left'', ''middle'', ''right'')
===Optional arguments===
{{OptionalArg}}
*'''doubleClick:''' Specifies whether it is a double click or not.


===Returns===
===Returns===
Line 19: Line 23:


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


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

Latest revision as of 23:00, 1 October 2024

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

Syntax

bool injectBrowserMouseDown ( browser webBrowser, string mouseButton [, bool doubleClick = false ] )

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)

Optional arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • doubleClick: Specifies whether it is a double click or not.

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