mouseUp

Typemessage
Dictionarywidget.headerbar
LibraryHeader Bar
Syntax
mouseUp
Associationscom.livecode.widget.headerbar
Summary

Sent when the header bar is clicked

Example
on mouseUp
   local tActionName
   put the mouseAction of the target into tActionName
   if tActionName is not empty then
      answer merge("The [[tActionName]] action was clicked")
   else
      answer "Try clicking on an action"
   end if
end mouseUp
RelatedProperty: mouseAction
Description

The mouseUp message is sent when the header bar is clicked.