Announcement

Collapse
No announcement yet.

Agent Speak from a remote application

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Agent Speak from a remote application

    Anyone care to translate these lines to VB from PERL? Would be much appreciated.

    <%@ LANGUAGE=PerlScript %>
    <html>
    <head>
    <title>Agent Speak via CGI</title>
    </head>
    <body>
    <b>The text being spoken is:</b><br>

    <%
    my $speech = $request->form('speak_this');

    $response->send($speech);

    $hs->speak($speech);
    %>

    </body></html>

    Skibum

    http://www.skibumsplace.com
    ______________________________
    Skibumsplace - Locate Me

    #2
    <BLOCKQUOTE><font size="-1">quote:</font><HR>Originally posted by Skibum:
    Anyone care to translate these lines to VB from PERL? Would be much appreciated.

    &lt;%@ LANGUAGE=PerlScript %&gt;
    &lt;%@ LANGUAGE=VBScript %&gt;

    &lt;html&gt;
    &lt;head&gt;
    &lt;title&gt;Agent Speak via CGI&lt;/title&gt;
    &lt;/head&gt;
    &lt;body&gt;
    The text being spoken is:&lt;br&gt;

    &lt;%
    my $speech = $request-&gt;form('speak_this');
    speech=request.form("speak_this")

    $response-&gt;send($speech);
    response.write(speech)

    $hs-&gt;speak($speech);
    hs.speak(speech)
    %&gt;

    &lt;/body&gt;&lt;/html&gt;

    Skibum

    http://www.skibumsplace.com&lt;HR&gt;&lt;/BLOCKQUOTE&gt;

    -Rupp
    💁‍♂️ Support & Customer Service 🙋‍♂️ Sales Questions 🛒 Shop HomeSeer Products

    Comment


      #3
      Thanks Rupp.... I forgot to remove the semicolons.....

      Skibum

      http://www.skibumsplace.com
      ______________________________
      Skibumsplace - Locate Me

      Comment

      Working...
      X