16 lines
346 B
Markdown
16 lines
346 B
Markdown
# onLoseFocus
|
|
`onLoseFocus(self)`<br>
|
|
This event gets triggered as soon as the object loses its focus.
|
|
|
|
```lua
|
|
local basalt = require("basalt")
|
|
|
|
local main = basalt.createFrame()
|
|
local aButton = main:addButton()
|
|
:setPosition(3,3)
|
|
:onLoseFocus(
|
|
function(self)
|
|
basalt.debug("Please come back...")
|
|
end
|
|
)
|
|
``` |