OnClientBrowserTooltip

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The event is triggered when the user hovers a tooltip.

Parameters

string text
  • text: string containing the tooltip text. Empty string if user is not longer hovering.

Source

The webbrowser element.

Example

If the user hovers the Google search input field 'Tooltip-Text: Search' will be printed in the chatbox.

local browser = guiCreateBrowser(0, 0, 800, 600, false, false, false)
local theBrowser = guiGetBrowser(browser)
showCursor(true)


addEventHandler( "onClientBrowserCreated", theBrowser, function()
  loadBrowserURL(source, "https://www.google.com/?ncr&hl=en")
end)

addEventHandler("onClientBrowserTooltip", root, function(text)
  if (text ~= "") then
    outputChatBox("Tooltip-Text: "..text)
  else
    outputChatBox("You are not longer hovering a tooltip")
  end
end)


See Also