home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1995 September / PCD0995.ISO / files / tools.dir / 00372.ls < prev    next >
Encoding:
Text File  |  1995-01-25  |  880 b   |  25 lines

  1. global gUSALit, gUSASprite, gInternationalSprite, gOrderInfoSprite
  2.  
  3. on mouseDown
  4.   set WhichSprite to the clickOn
  5.   set the castNum of sprite WhichSprite to the number of cast "International lit"
  6.   repeat while the stillDown
  7.     updateStage()
  8.   end repeat
  9. end
  10.  
  11. on mouseUp
  12.   if gUSALit = 1 then
  13.     set the castNum of sprite gUSASprite to the number of cast "USA/Canada"
  14.     set the castNum of sprite gInternationalSprite to the number of cast "International lit"
  15.     set the castNum of sprite gOrderInfoSprite to the number of cast "OrderingInfo2"
  16.     set gUSALit to 0
  17.   else
  18.     set the castNum of sprite gUSASprite to the number of cast "USA/Canada lit"
  19.     set the castNum of sprite gInternationalSprite to the number of cast "International"
  20.     set the castNum of sprite gOrderInfoSprite to the number of cast "OrderingInfo1"
  21.     set gUSALit to 1
  22.   end if
  23.   updateStage()
  24. end
  25.