MessageWasHandled

Typeexpression
DictionaryLCB
LibraryLiveCode Builder
Syntax
the message was handled
Associationscom.livecode.engine
Summary

Determines whether a message was handled

Example
public handler OnMouseUp() returns nothing
	send "buttonClicked" to my script object
	if the message was handled then
		return
	end if
	log "The message was not handled"
end handler
Description

Determines if a dispatched message was handled by any script objects in the message path.

Tagsengine,script engine