home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #2 / CKSPCV32.BIN / movies / clubroom.dir / 00172_Script_172 < prev    next >
Text File  |  1995-04-03  |  398b  |  19 lines

  1. on mouseDown
  2.   global gSButton, gSReturn
  3.   
  4.   if gSButton = gSReturn then
  5.     set myCast = the castNum of sprite gSButton
  6.     set the castNum of  sprite gSButton to myCast + 1
  7.     updateStage
  8.   end if
  9. end
  10.  
  11. on mouseUp
  12.   global gSRadio
  13.   
  14.   sound stop 2
  15.   set the puppet of sprite gSRadio to false
  16.   set the visible of sprite gSRadio to false
  17.   updateStage
  18.   go to frame "start"
  19. end