home *** CD-ROM | disk | FTP | other *** search
- on SetCursor
- global colorcrsr
- if the machineType <> 256 then
- if not objectp(COLOURM.OBJ) then
- set colorcrsr to ColorCursor(mnew)
- end if
- colorcrsr(mGetSetCursor, 131)
- else
- cursor([4, 5])
- end if
- end
-
- on ReleasCursor
- global colorcrsr
- if the machineType <> 256 then
- if objectp(colorcrsr) then
- colorcrsr(mReleaseCursor)
- colorcrsr(mdispose)
- updateStage()
- cursor(4)
- cursor(0)
- end if
- else
- cursor(-1)
- end if
- end
-
- on StopTheMovie
- global colorcrsr
- if the machineType <> 256 then
- if objectp(colorcrsr) then
- colorcrsr(mdispose)
- closeXLib("COLOURM.OBJ")
- end if
- end if
- end
-