home *** CD-ROM | disk | FTP | other *** search
/ LAUNCH 3 / LAUNCH.BIN / pc / sony / mainmov.dir / 00090_Script_90 < prev    next >
Text File  |  1995-06-07  |  764b  |  37 lines

  1. --go roadtrip (mouse)
  2.  
  3. --on mouseDown
  4. --  if the mouseCast = the castNum of sprite 24 then
  5. --    --enable lingo to move button
  6. --    puppetsprite(the clickon), true
  7. --    
  8. --    --depressing the button
  9. --    set the locV of sprite(the clickon) to (the locV of sprite(the clickon) + 5)
  10. --    updatestage
  11. --  end if
  12. --end
  13.  
  14.  
  15.  
  16. on mouseUp
  17.   
  18.   if the mouseCast = the castNum of sprite 24 then
  19.     
  20.     RESETCURSOR
  21.     
  22.     BUTTONOFFSET
  23.     
  24.     puppetsprite(45), false  --turn off popups
  25.     
  26.     puppetsprite(10), false
  27.     puppetsprite(11), false
  28.     puppetsprite(28), false  --sound button
  29.     
  30.     --enable lingo to move button
  31.     puppetsprite(the clickon), false
  32.     
  33.     updatestage
  34.     
  35.     go "HighDesFrame"
  36.   end if    
  37. end