home *** CD-ROM | disk | FTP | other *** search
/ Cocktail Hour / image.iso / COCKTAIL.DIR / objects_69_shop2.ls < prev    next >
Encoding:
Text File  |  1997-03-05  |  334 b   |  13 lines

  1. on mouseUp
  2.   set x to the mouseLine
  3.   if x > 0 then
  4.     if the foreColor of line x of field "shop2" = 204 then
  5.       set the foreColor of line x of field "shop2" to 35
  6.     else
  7.       if the foreColor of line x of field "shop2" = 35 then
  8.         set the foreColor of line x of field "shop2" to 204
  9.       end if
  10.     end if
  11.   end if
  12. end
  13.