Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Paste this event routine into the command handler:

   Evtroutine Handling(#Com_owner.avEvent) Withid(#EventId) Withainfo1(#AInfo1) 
If (#EventId = ShowMessage)
#AVFRAMEWORKMANAGER.avIssueMessage Text(#AInfo1) Requester(#COM_OWNER) Clearexistingmessages(True)
Endif
Endroutine

The routine listens for the ShowMessage event, and when it receives it, it issues the message.

...