home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1993-02-25 | 668 b | 20 lines |
- ' If you have opened a screen with less than 32 colours
- ' you may have wondered how to change the colours of the mouse
- ' pointer. if any one has tried to change them by editing the mouse.abk
- ' file in the amos_system draw you will know that this does not work.
- ' With this procedure you can easily change its colour with one simple
- ' call to this proc.
- '
- 'A is the outside colour of the mouse.
- 'B is the right side colour of the mouse
- 'C is the left side colour of the mouse
- '
- 'eg.
- ' MOUSE_COLOURS_[$000,$DDD,$AAA]
- '
- Procedure MOUSE_COLOURS_[A,B,C]
- ' Procedure Written by Brett George
- Colour 19,A
- Colour 18,B
- Colour 17,C
- End Proc