Label:onHover(x, y) event


This event is fired when the user moves the mouse pointer over the Label.

Parameters

x

The horizontal position of the mouse in the Label area (zero means the left border of the widget).

y

The vertical position of the mouse in the Label area (zero means the top border of the widget).

Return value

The event returns no value.

Example

local ui = require "ui" -- create a window local win = ui.Window("Window:onHover() sample", 320, 200) local label = ui.Label(win, "Move the mouse over this text!", 110, 75) -- set a onClick() event : display a status bar with the mouse position when the user hovers the label function label:onHover(x, y) win:status("Mouse position : "..x..", "..y) end win:show() while win.visible do ui.update() end