Messenger Plus! Live - Scripting Documentation

Here is the collection of events generated by interface windows created by the script.

The event names for interface windows are created based on the window's Id that generated them. For example, a window with an Id of "MyWnd" will generate a "OnMyWndEvent_Destroyed" when it's destroyed. This naming convention helps scripts stay organized when manipulating different kinds of windows.

Events:

Name Description
OnWindowidEvent_Cancel The user clicked on the Cancel button.
OnWindowidEvent_Destroyed A script window is being destroyed.
OnWindowidEvent_MessageNotification A message is being sent to the window.
OnWindowidEvent_CtrlClicked A "push" control was clicked.
OnWindowidEvent_ComboSelChanged The current selection changed in a ComboBoxControl.
OnWindowidEvent_EditTextChanged The text of an EditControl or a RichEditControl was changed by the user.
OnWindowidEvent_LstBoxSelChanged The current selection changed in a ListBoxControl.
OnWindowidEvent_LstBoxDblClicked An item in a ListBoxControl was double clicked.
OnWindowidEvent_LstViewClicked A ListViewControl was clicked.
OnWindowidEvent_LstViewRClicked A ListViewControl was right clicked.
OnWindowidEvent_LstViewDblClicked A ListViewControl was double clicked.
OnWindowidEvent_LstViewSelStateChanged An item in a ListViewControl was selected or unselected.