InjectBrowserMouseDown: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Link to the Romanian translation of this page added.)
m (Add missing argument)
 
(One intermediate revision by one other user not shown)
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}}
{{OOP||[[Element/Browser|browser]]:injectMouseDown}}
Line 14: Line 14:
*'''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==
<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>



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