home *** CD-ROM | disk | FTP | other *** search
/ Greatest Childrens Stories Ever Told / Greatest_Stories.iso / demos / funtown / demo.dir / 00032_Script_32 < prev    next >
Text File  |  1994-11-08  |  356b  |  17 lines

  1. on mouseDown
  2.   global WQ, mode
  3.   
  4.   if the frame = (marker("Questions")+1) or the frame = (Marker("Questions2")+1) then
  5.     set WQ = (WQ + 1)
  6.     if WQ > 5 then
  7.       set WQ = 5
  8.       weHaveAWinner
  9.     else
  10.       if mode = 7 then go marker("Questions")
  11.       if mode = 8 then go marker("Questions2")
  12.     end if
  13.   else
  14.     beep
  15.   end if
  16. end
  17.