home *** CD-ROM | disk | FTP | other *** search
- global RepNum
-
- on startMovie
- clearGlobals()
- tell the stage
- posWind(528, 300)
- end tell
- case the colorDepth of
- 8:
- RepNum = 1000
- 16:
- RepNum = 500
- 32:
- RepNum = 500
- end case
- cursor(200)
- preLoad()
- InitStuff()
- BirthInit()
- end
-
- on idle
- RepFly(RepNum)
- end
-
- on Wait tim
- temp = the timer + tim
- repeat while the timer < temp
- end repeat
- end
-
- on RepFly aNum
- global flyCount
- flyCount = flyCount + 1
- if flyCount > aNum then
- MakeFly()
- flyCount = 0
- end if
- end
-
- on endmovie
- play movie "@//itch_Browser"
- end
-
- on stopMovie
- sound stop 1
- put " " into field "Intro"
- end
-