home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #1 / ClubKidsoft.iso / movies / catalog.dir / 00040_Script_40 < prev    next >
Text File  |  1995-02-07  |  427b  |  19 lines

  1. -- Click on BuyNow button
  2. on mouseDown
  3.   global gMIAWOpen
  4.   if gMIAWOpen = TRUE then exit
  5.   
  6.   CLICK
  7.   cursor 4
  8.   if marker(0) = label("Detail") then
  9.     global SSpecialPict
  10.     if the visible of sprite SSpecialPict = TRUE then
  11.       ShowInfo()
  12.     end if
  13.     puppetTransition 4, 1, 40, FALSE
  14.     ShowPurchaseScreen
  15.     
  16.   else -- BuyNow in summary section
  17.     OpenFind "SummaryFindDialogHandler"
  18.   end if
  19. end