[EMAIL PROTECTED] wrote:
> ok, first of all, is it possible to change the object options
> (for instance, "-disable") after the object is already defined?
> I mean, I've tried using hashes in all these different ways,
> but none of them work:
>
> $Button{-disable} = 1;
> $Button{'-disable'} = 1;
> $Button->{-disable} = 1;
> $Button->{'-disable'} = 1;
>
> so, can I change those options, and if so, how?

    $Button->Change(-disable => 1);

or, in this case:

    $Button->Disable();

...and the second question was? ;-)


cheers,
Aldo

__END__
$_=q,just perl,,s, , another ,,s,$, hacker,,print;



Reply via email to