home *** CD-ROM | disk | FTP | other *** search
/ FDR / FDR.iso / FDR / FDR.DXR / 00004_idleContinueQuit.ls < prev    next >
Encoding:
Text File  |  1996-10-22  |  446 b   |  26 lines

  1. global vHFlag
  2.  
  3. on exitFrame
  4.   go(the frame)
  5. end
  6.  
  7. on idle
  8.   if rollOver(6) then
  9.     exit
  10.   end if
  11.   if rollOver(3) then
  12.     showSprite(6, "QuitH", the loc of sprite 3, 1)
  13.     set vHFlag to 1
  14.   else
  15.     if rollOver(4) then
  16.       showSprite(6, "ContinueH", the loc of sprite 4, 1)
  17.       set vHFlag to 1
  18.     else
  19.       if vHFlag then
  20.         showSprite(6, "seedbmp", point(2000, 2000), 1)
  21.         set vHFlag to 0
  22.       end if
  23.     end if
  24.   end if
  25. end
  26.