home *** CD-ROM | disk | FTP | other *** search
/ Draw 3 / Draw3.iso / fpc2.dxr / 00135.ls < prev    next >
Encoding:
Text File  |  2000-02-17  |  458 b   |  26 lines

  1. on mouseDown
  2.   global filtrofabricante
  3.   if filtrofabricante = VOID then
  4.     nothing()
  5.   else
  6.     set the foreColor of field filtrofabricante to 255
  7.   end if
  8.   set filtrofabricante to VOID
  9.   fabricantes10mas()
  10.   if the doubleClick then
  11.     repeat while the stillDown
  12.       fabricantes10mas()
  13.     end repeat
  14.   end if
  15. end
  16.  
  17. on mouseEnter
  18.   set the member of sprite 81 to 210
  19.   cursor(280)
  20. end
  21.  
  22. on mouseLeave
  23.   set the member of sprite 81 to 168
  24.   cursor(0)
  25. end
  26.