Difference between revisions of "EventDispatcher:dispatchEvent"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 16: Line 16:
 
if self.focus and self.isclicked then
 
if self.focus and self.isclicked then
 
local ec = Event.new("clicked")
 
local ec = Event.new("clicked")
 +
ec.info1 = "Hello, "
 +
ec.info2 = "World!"
 
self:dispatchEvent(ec) -- button was clicked
 
self:dispatchEvent(ec) -- button was clicked
 
e:stopPropagation()
 
e:stopPropagation()

Latest revision as of 02:09, 7 December 2025

Available since: Gideros 2011.6
Class: EventDispatcher

Description

Dispatches an event to this EventDispatcher instance.

EventDispatcher:dispatchEvent(event)

Parameters

event: (Event) the Event object to be dispatched

Example

function ButtonTextP9UDDT:onMouseUp(e)
	if self.focus and self.isclicked then
		local ec = Event.new("clicked")
		ec.info1 = "Hello, "
		ec.info2 = "World!"
		self:dispatchEvent(ec) -- button was clicked
		e:stopPropagation()
	end
	self.focus = false
	self.isclicked = false
	self:updateVisualState()
end