Help for this page

Select Code to Download


  1. or download this
    use Net::AIMTOC;
    use Term::ReadKey;
    ...
    $password = "";        #Password for logging in
    $out = "STDOUT";       #Set default output to the screen
    @targets;              #Array containing screennames to watch
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $password = "";        #Password for logging in
    my $out = "STDOUT";       #Set default output to the screen
    my @targets;              #Array containing screennames to watch
    
  3. or download this
    sub process_args($) {
        my $iterate = 0;     #Local variable for adding to @targets
    ...
            print "Thanks for supporting AimSpy.  You are currently using 
    +version $v
    +ersion of AimSpy.\n";
        }
    
  4. or download this
            open($out = SAVE, ">>$save") or open($out = SAVE, ">$save") or
                      die "Can't save to file $save: $!\n";
    
  5. or download this
      open my $out,">>$save" or die "Can't append to '$save': $!\n";
    
  6. or download this
            $targets[$iterate] = $_[0];
            $iterate++;
    
  7. or download this
    push @targets,$item;
    
  8. or download this
        try {
            $aim = Net::AIMTOC->new;
    ...
            my $err = shift;
            print $err->stringify, "\n";
        };