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
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
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
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
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.