home *** CD-ROM | disk | FTP | other *** search
- global thisIsA_PC, screenDump
-
- on startMovie
- cursor(4)
- set thisIsA_PC to 1
- set the centerStage to 0
- set the fixStageSize to 0
- copyScreen()
- end
-
- on copyScreen
- set currScreenRect to getAt(the deskTopRectList, 1)
- ScreenToMember(0, 0, getAt(currScreenRect, 3), getAt(currScreenRect, 4), 4)
- set screenDump to the picture of member 4
- end
-
- on startMain
- set currScreenRect to getAt(the deskTopRectList, 1)
- set screenWidth to getAt(currScreenRect, 3)
- if screenWidth < 650 then
- set initMovie to "Win14.DIR"
- else
- if screenWidth < 810 then
- set initMovie to "Win15.DIR"
- else
- if screenWidth < 1030 then
- set initMovie to "Win17.DIR"
- else
- set initMovie to "Win21.DIR"
- end if
- end if
- end if
- play movie initMovie
- end
-