home *** CD-ROM | disk | FTP | other *** search
/ Shirley Barber's Fairies: Create, Paint & Play / Fairies.iso / pc / Files / ColourIn.dxr / Internal_17_Initialize.ls < prev    next >
Encoding:
Text File  |  2003-09-29  |  276 b   |  17 lines

  1. global CueNumPassed, myFinishFrame
  2.  
  3. on prepareMovie
  4.   myFinishFrame = VOID
  5.   sprite(27).visible = 0
  6.   cursor(200)
  7. end
  8.  
  9. on cuePassed channel, number, name
  10.   if CueNumPassed = VOID then
  11.     CueNumPassed = 0
  12.   end if
  13.   if channel = #sound1 then
  14.     CueNumPassed = 1
  15.   end if
  16. end
  17.