NAME

Win32::HostExplorer - Automate telnet using Hummingbird HostExplorer and interact with the presentation space.


VERSION

Version 0.01


SYNOPSIS

    use Win32::HostExplorer;
    # Create new instance of HostExplorer
    my $obj = Win32::HostExplorer->new( debug => 3, logfile => $log_file );
    # Print the first line, last line
    print $obj->title_row(),  "\n";
    print $obj->status_row(), "\n";
    # Retrieve lines 2 and 7 through 12
    my @array = $obj->show_lines( 2, 7..12 );
    # Search lines 7 through 9 for the pattern
    $obj->match_pattern( '.*money\s+(\S+)', 7..9 );
    # Position cursor on row 7, column 11
    my ( $row, $col ) = $obj->cursor_pos( 7, 11 );
    # Send text to row/column 7,1
    $obj->field_input( 7, 1, 'Thelonius Monk' );
    # Execute function key 'F1' within terminal
    $obj->f1();


DESCRIPTION

The Win32::HostExplorer module provides an object-oriented interface and methods to interact with the HostExplorer presentation space.


METHODS

CONSTRUCTION AND METHODS

GENERIC METHODS

System Commands

Action Keys

Editing


AUTHOR

George Kevin Hathorn, <gekeha at gmail dot com>


BUGS

Please report any bugs or feature requests to bug-win32-hostexplorer at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.


SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Win32::HostExplorer

You can also look for information at:


COPYRIGHT & LICENSE

Copyright 2007 George Kevin Hathorn, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.