home *** CD-ROM | disk | FTP | other *** search
- global gOpSys -- the local operating system
-
-
- --XOBJECTS
- on patchpal
- if the machineType <> 256 then
- global fixpal
- --fixpal(mPatchIt)
- end if
- end patchpal
-
- on initRearWindow theColor
- if the machineType <> 256 then
- global rwObj
- if objectP( rwObj ) then rwObj( mDispose )
- put RearWindow( mNew, "M" ) into rwObj
- rwObj( mIndexColorToWindow, theColor )
- end if
- end initRearWindow
-
- on disposeRearWindow
- if the machineType = 256 then
- nothing
- else
- global rwObj
- if objectP( rwObj ) then rwObj( mDispose )
- end if
- end disposeRearWindow