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

  1. # NOTE: Derived from ..\blib\lib\Tk\Text.pm.  Changes made here will be lost.
  2. package Tk::Text;
  3.  
  4. sub Motion2
  5. {
  6.  my ($w,$x,$y) = @_;
  7.  $Tk::mouseMoved = 1 if ($x != $Tk::x || $y != $Tk::y);
  8.  $w->scan("dragto",$x,$y) if ($Tk::mouseMoved);
  9. }
  10.  
  11. 1;
  12.