InjectBrowserMouseMove: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
m (fix oop)
Line 9: Line 9:
bool injectBrowserMouseMove ( browser webBrowser, int posX, int posY )
bool injectBrowserMouseMove ( browser webBrowser, int posX, int posY )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[Element/Browser|browser]]:injectMouseMove||injectBrowserMouseMove}}
{{OOP||[[Element/Browser|browser]]:injectMouseMove}}


===Required arguments===
===Required arguments===

Revision as of 20:22, 17 December 2015

This function injects a mouse movement.

Syntax

bool injectBrowserMouseMove ( browser webBrowser, int posX, int posY )

OOP Syntax Help! I don't understand this!

Method: browser:injectMouseMove(...)


Required arguments

  • webBrowser: The browser which will retrieve the mouse movement
  • posX: Absolute X screen coordinate
  • posY: Absolute Y screen coordinate

Returns

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

Example

function onCursorMove ( relativeX , relativeY , absoluteX , absoluteY ) 
	injectBrowserMouseMove ( browser , absoluteX , absoluteY ) 
end 
addEventHandler ( "onClientCursorMove" , root , onCursorMove )

See Also

Todo

See also