Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
            $I = 0;
        }
    }
    
  2. or download this
    sub manual_loop_control {
    $mw1->DoOneEvent( DONT_WAIT | ALL_EVENTS );
    $mw2->DoOneEvent( DONT_WAIT | ALL_EVENTS );
    $mw3->DoOneEvent( DONT_WAIT | ALL_EVENTS );
    }
    
  3. or download this
    $mw->repeat(10, \&manual_loop_control);