[Perl-unix-users] Tk::BrowseEntry -colorstate

2005-10-31 Thread listmail
Is there a way that I can work around the "Grayed Out" appearance of a BrowseEntry widget in readonly mode? I thought I could use colorstate to override the colors used in that mode. use Tk; use Tk::BrowseEntry; my $top=MainWindow->new(); my $var="opt1"; my $b = $top->BrowseEntry(-label => "La

[Perl-unix-users] Changing $_ Output - Unknown Reason

2005-10-31 Thread Bill Platt
Hello, I have included a section of code below that is driving me nuts. If I don't run the Substitution operations, then I can successfully extract the URL and the imbedded anchor text from $parsed_html. Once I include the Substitution operations, then I cannot extract the same results. Eve

Re: [Perl-unix-users] Changing $_ Output - Unknown Reason

2005-10-31 Thread $Bill Luebkert
Bill Platt wrote: > Hello, > > I have included a section of code below > that is driving me nuts. > > If I don't run the Substitution operations, > then I can successfully extract the URL > and the imbedded anchor text from > $parsed_html. > > Once I include the Substitution operations, > then

[Perl-unix-users] Re: Changing $_ Output - Unknown Reason

2005-10-31 Thread Bill Platt
I tried switching to a variable... although I am not certain I have the syntax correct. I am getting the same results. Without the substitutions, it is perfect. With the subs taking place, I get zero results in the array. $parsed_html =~ s/\s+/ /gs; $parsed_html =~ s/>/">/gs; $parsed_html

Re: [Perl-unix-users] Changing $_ Output - Unknown Reason

2005-10-31 Thread Bill Platt
That did the trick. Thanks. Bill $Bill Luebkert wrote: Bill Platt wrote: Hello, I have included a section of code below that is driving me nuts. If I don't run the Substitution operations, then I can successfully extract the URL and the imbedded anchor text from $parsed_html.