UIHANDLER OnEnterPressed

From Warcraft Wiki
Jump to navigation Jump to search

Fires when pressing enter, escape, press or tab.

(self)

Arguments

self
EditBox - The focussed widget.

Details

Examples

Clears focus by pressing escape.

editBox:SetScipt("OnEscapePressed", function(self)
	self:ClearFocus()
end)

Adds four spaces by pressing tab.

editBox:SetScript("OnTabPressed", function(self)
	self:Insert("    ");   -- 4 spaces
end)