in reply to Re: Term::UI on Win32
in thread Term::UI on Win32
Hello marmot
I found the problem. my script creates 8 different Term::ReadLine objects in different sub routines. The term object is created within each sub routine. It looks as you can only create a single object of Term::ReadLine in a single Perl script.
If you try to create a second one then you get the message. If I use for these different input methods just a single object it works without the message on Windows.
As I have said multiple Term objects are working fine on Linux and MacOSX but not on Windows.
Do you have any idea why this is the reason?
use Term::UI; use Term::ReadLine; my $term = Term::ReadLine->new('lang'); my $reply = $term->get_reply( prompt => 'What is your default prog. la +ng?', default => 'Perl'); my $term2 = Term::ReadLine->new('OS'); $reply = $term2->get_reply( prompt => 'What is your OS?', default => ' +MacOS');
Any ideas?
Thanks Andreas
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Term::UI on Win32
by bingos (Vicar) on Mar 19, 2012 at 09:58 UTC |