home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / auto / Tk / Scale / Enter.al < prev    next >
Encoding:
Text File  |  1997-08-10  |  322 b   |  16 lines

  1. # NOTE: Derived from ..\blib\lib\Tk\Scale.pm.  Changes made here will be lost.
  2. package Tk::Scale;
  3.  
  4. sub Enter
  5. {
  6.  my ($w,$x,$y) = @_;
  7.  if ($Tk::strictMotif)
  8.   {
  9.    $w->{'activeBg'} = $w->cget("-activebackground");
  10.    $w->configure("-activebackground",$w->cget("-background"));
  11.   }
  12.  $w->Activate($x,$y);
  13. }
  14.  
  15. 1;
  16.