I have spent the better part of a day reading all of the documentation I can find on manipulating the MS Agent with perl. (A special thanks to Jouke and his Win32::MSAgent module which I was able to use to answer a lot of other questions.) My problem is this... I can add a user defined menu option to the agent, but I cannot figure out how to attach a perl sub to the agent's Command event. Any suggestions?

Here is a some code which will activate the "Merlin" agent, add an exit menu option, and then wait. Getting the program to terminate when the exit menu option is selected is my goal.

#!/usr/bin/perl use strict; use warnings; use Win32::OLE; use Win32::OLE::Variant; Win32::OLE->Initialize(Win32::OLE::COINIT_MULTITHREADED); my $Agent = Win32::OLE->new('Agent.Control.2'); $Agent->{Connected} = Variant(VT_BOOL, 1); $Agent->Characters->Load('Merlin','Merlin.acs'); my $Char = $Agent->Characters('Merlin'); $Char->Commands->Add('Exit','E&xit'); $Char->Show; while(1) { $Char->Speak('Sleeping...'); sleep(60); }

In reply to User defined MS Agent menus by Rhose

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.