home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #2 / CKSPCV32.BIN / movies / qa.dir / 00017_Script_17 < prev    next >
Text File  |  1995-03-30  |  674b  |  27 lines

  1. on exitFrame
  2.   ShowAllChannels
  3.   AllPuppetsOff
  4.   
  5.   global qaNumPages, qaPageNum
  6.   set qaNumPages = 8
  7.   set qaPageNum = 0
  8.   
  9.   -- Hide all the tabs
  10.   set firstTabSprite = 8
  11.   set lastTabSprite = firstTabSprite + qaNumPages - 1
  12.   repeat with i = firstTabSprite to lastTabSprite
  13.     set the visible of sprite i to FALSE
  14.   end repeat
  15.   
  16.   -- Hide close rollover
  17.   global SQAClose
  18.   set SQAClose = 17
  19.   set the visible of sprite SQAClose = FALSE
  20.   
  21.   -- Setup text and scrolling field info
  22.   global SQATextField, SQATextFrame, SQAScrollUp, SQAScrollDown
  23.   set SQATextField = 2
  24.   set SQATextFrame = 19
  25.   set SQAScrollUp = 20
  26.   set SQAScrollDown = 21
  27. end