home *** CD-ROM | disk | FTP | other *** search
- on prepareMovie
- global glstMovies, giNext
- clearGlobals()
- giNext = 1
- glstMovies = ["WS_01C", "WS_02", "WS_04_10", "WS_11_12", "WS_13", "WS_14_22", "WS_23_29", "WS_30_33", "WS_34", "WS_35_37", "WS_38_44", "WS_45C", "WS_46_51", "WS_52_57", "WS_58", "WS_59", "WS_60"]
- cursor(4)
- end
-
- on fValidMonitorSettings
- if the colorDepth <> 16 then
- return 0
- end if
- lstMonitors = duplicate(the deskTopRectList)
- repeat with rectMonitor in lstMonitors
- if (rectMonitor[1] = 0) and (rectMonitor[2] = 0) then
- exit repeat
- end if
- end repeat
- if (rectMonitor[3] < 800) or (rectMonitor[4] < 600) then
- return 0
- else
- return 1
- end if
- end
-