home *** CD-ROM | disk | FTP | other *** search
- on goDemo theDemoMov
- global theDemoList, gbeenThere, gVoiceFlag
- set xx to getPos(theDemoList, theDemoMov)
- if (theDemoMov = "Strategy") or (theDemoMov = "KDesk") then
- set gbeenThere to 0
- set gVoiceFlag to 0
- go(the frame + 1)
- play movie theDemoMov
- else
- set gbeenThere to 0
- set gVoiceFlag to 0
- go(theDemoMov)
- end if
- end
-
- on PlayDemoFrame theFrame, theMovie
- global gbeenThere
- set gbeenThere to 0
- play frame theFrame of movie theMovie
- end
-
- on autoGoDemo
- global theDemoList, gAutoMode, gCurrDemo
- repeat with xx = 1 to count(theDemoList)
- if getAt(theDemoList, xx) = #done then
- nothing()
- next repeat
- end if
- set tempMovie to getAt(theDemoList, xx)
- set gCurrDemo to getAt(theDemoList, xx)
- exit repeat
- end repeat
- puppetTransition(6, 2, 16, 0)
- puppetPalette(the framePalette)
- clearPuppets(1, 46)
- go("MenuTran")
- puppetPalette(0)
- repeat with nn = 1 to 24
- set the visible of sprite nn to 1
- end repeat
- set gAutoMode to 1
- put "Auto test: " & tempMovie
- goDemo(tempMovie)
- end
-
- on goHilite theSprite
- set the visible of sprite (theSprite + 1) to 1
- updateStage()
- stopAndWaitTime(2)
- set the visible of sprite (theSprite + 1) to 0
- updateStage()
- stopAndWaitTime(1)
- end
-
- on PlayMyMovie theMovToPlay
- puppetSound(0)
- if machineType() < 256 then
- play movie theMovToPlay & ".dir"
- else
- play movie theMovToPlay & ".dir"
- end if
- end
-