home *** CD-ROM | disk | FTP | other *** search
/ GU Photo: Background 3 / GU.iso / pc / win / browser.exe / browser.DXR / 00119_colorDepth.ls < prev    next >
Encoding:
Text File  |  1994-09-30  |  316 b   |  19 lines

  1. on mouseDown
  2.   if the machineType = 256 then
  3.     pushfield()
  4.   end if
  5. end
  6.  
  7. on mouseUp
  8.   if the machineType = 256 then
  9.     set cst to the castNum of sprite clickOn()
  10.     set v to field cst
  11.     if v = "8bit" then
  12.       put "24bit" into field cst
  13.     else
  14.       put "8bit" into field cst
  15.     end if
  16.   else
  17.   end if
  18. end
  19.