fireEvent
NAME
x6events.fireEvent
FUNCTION
The Javascript method x6events.fireEvent will notify all
objects that have subscribed to an event. Each subscribing
object must have a either:
- a method named receiveEvents(eventName,args)
- a method named receiveEvent_{EventName}(args)
If you want your application objects to notify other objects
of its own events, call this function.
INPUTS
eventName, the name of the event
mixed, a single argument. If multiple arguments are required, pass an object that contains property:value assignments or an array. The only requirement for the argument is that the listeners know what to expect.
RESULTS
no return value.