home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 34 / Creative-Review-CD-ROM-34.iso / pc / jkd / folio / scripts.cst / 00021_Script_SearchButton < prev    next >
Text File  |  1998-01-26  |  853b  |  40 lines

  1. on mouseEnter
  2.   global searchButton
  3.   if (the searchButtonOn of searchButton = FALSE) then
  4.     overButton searchButton
  5.   end if
  6.   updateStage
  7. end
  8.  
  9. on mouseDown
  10.   global searchButton
  11.   if (the searchButtonOn of searchButton = FALSE) then
  12.     downButton searchButton
  13.   end if
  14.   updateStage
  15. end
  16.  
  17. on mouseUp
  18.   global searchButton,searchMenu
  19.   if (the searchButtonOn of searchButton = TRUE) then
  20.     overButton searchButton
  21.     set the searchButtonOn of searchButton = FALSE
  22.     hideMenu searchMenu
  23.   else
  24.     downButton searchButton
  25.     set the searchButtonOn of searchButton = TRUE
  26.     showMenu searchMenu
  27.   end if
  28.   updateStage
  29. end
  30.  
  31. on mouseLeave
  32.   global searchButton
  33.   if (the searchButtonOn of searchButton = FALSE) then
  34.     normalButton searchButton
  35.   else
  36.     downButton searchButton
  37.   end if
  38.   updateStage
  39. end
  40.