Hi Everybody!!!! im in need of some help? i have a small perl script that displays some text and requires input from a user. eg #!/usr/bin/perl -w use strict; my $test1 = ""; my $test2 = ""; print "Enter the 1st option:\n"; $test1 = <STDIN>; print "Enter the 2nd option:\n"; $test2 = <STDIN>; print "\nYou Entered: "; print $test1; print "\nYou Entered: "; print $test2; im trying to put a gui using autoit onto this perl script and display the output from the perl script