Specifications
Event Actions
module "Incoming"
{
event "Event1" Connection Request { }
event "Event2" Connection Response { }
event "Event3" Outlook MessageDelivery { }
}
Outlook Read Message Event Action
The Outlook ReadMessage event action indicates that the user has opened a
message. This action supports the following parameter:
ExecutableName. The name of the process
Example
transaction "Read"
module "Read"
{
event "Read" Outlook ReadMessage { }
event "ReadComplete" Outlook ReadMessageComplete { }
}
Outlook SelectionChange Event Action
The Outlook SelectionChange event action indicates that the selection has
changed either within the current pane or between panes. This action supports
the following parameter:
ExecutableName. The name of the process
Example
transaction "Delete"
module "Delete"
{
#Deleting a message
choice
{
sequence
{
#This is when a user presses the delete key
event "DeleteKey" Windows KeyPress {Key = 46}
event "DeleteMenu" Windows MenuCommand { }
}
sequence
{
#This is when a user presses CTRL and then "D"
event "DeleteKey" Windows KeyPress {Key = 17}
BT Language Reference 147