home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 4: Phase Four / 17Bit_Phase_Four.iso / files / 3034.dms / 3034.adf / mouse_cols.AMOS / mouse_cols.amosSourceCode
Encoding:
AMOS Source Code  |  1993-02-25  |  668 b   |  20 lines

  1. ' If you have opened a screen with less than 32 colours  
  2. ' you may have wondered how to change the colours of the mouse 
  3. ' pointer. if any one has tried to change them by editing the mouse.abk  
  4. ' file in the amos_system draw you will know that this does not work.
  5. ' With this procedure you can easily change its colour with one simple 
  6. ' call to this proc. 
  7. '  
  8. 'A is the outside colour of the mouse. 
  9. 'B is the right side colour of the mouse 
  10. 'C is the left side colour of the mouse
  11. '
  12. 'eg. 
  13. '               MOUSE_COLOURS_[$000,$DDD,$AAA] 
  14. '
  15. Procedure MOUSE_COLOURS_[A,B,C]
  16.    ' Procedure Written by Brett George
  17.    Colour 19,A
  18.    Colour 18,B
  19.    Colour 17,C
  20. End Proc