home *** CD-ROM | disk | FTP | other *** search
/ AMOS PD CD / amospdcd.iso / sourcecode / general / instructions.amos / instructions.amosSourceCode
Encoding:
AMOS Source Code  |  1991-03-24  |  2.7 KB  |  59 lines

  1. Screen Open 0,640,256,8,Hires
  2.    Curs Off : Flash Off : Colour 2,$FF0
  3.    VISUAL["MESSAGE1"]
  4.    Pen 1 : Locate 20,28 : Print "  Press Mouse Button for next page"
  5.    Repeat 
  6.    Until Mouse Key<>0
  7.    VISUAL["message2"]
  8.    Pen 1 : Locate 20,28 : Print "Press Mouse Button to return to Menu"
  9.    Repeat 
  10.    Until Mouse Key<>0
  11.    Run "AutoExec.AMOS"
  12. '  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 
  13. Procedure VISUAL[M$]
  14.   Pen 2 : Paper 0 : Cls 0
  15.    Restore M$
  16.    Locate 27,1 : Print " PROGRAM INSTRUCTIONS "
  17.    Locate 27,2 : Print " -------------------- "
  18.    Locate 0,6
  19.    Repeat 
  20.       Read A$
  21.       If A$<>"zzzz" Then Print "  ";A$
  22.    Until A$="zzzz"
  23. End Proc
  24. '  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 
  25. MESSAGE1:
  26. Data "1) CASSETTE LABEL MAKER - is a program that  allows  the  user  to enter"
  27. Data "   and Print Cassette Labels of his/hers favourite Music Tapes."
  28. Data "   Instructions are included in the program.    An Example Label is also"
  29. Data "   included on the disk (Example.lab)."
  30. Data " "
  31. Data "2) NOUGHTS & CROSSES - is a simple  beatable  OXO game.   It's up to you"
  32. Data "   To find how to beat it (if you can !!!)"
  33. Data " "
  34. Data "3) INTERLACE DEMO - up to the  time of writing  this utility,  AMOS does"
  35. Data "   not posses the ability to Interlace a Picture. These couple of"
  36. Data "   Procedures will fix all that.  Procedure LACEON[n] switches interlace"
  37. Data "   on and Procedure LACEOFF[n] switches interlace off.     [n] indicates"
  38. Data "   to the number of screens in use. If using double buffer then use n=2."
  39. Data " "
  40. Data "4) KALEIDOSCOPE - is an AMOS version of an old BBC Micro program."
  41. Data "   The program was called Carpet. It Still looks good."
  42. Data " "
  43. Data "5) RABBIE BURNS - watch  the  picture of  the world famous poet,  Rabbie"
  44. Data "   Burns, being drawn in front of your eyes."
  45. Data "zzzz"
  46. MESSAGE2:
  47. Data "6) PALETTE SETTER -  is  utility  program  that can be used in two ways."
  48. Data "   First, the user is welcome to use it in his/hers programs.    Second,"
  49. Data "   the utility can be used to work out the $RGB components number."
  50. Data "   ie. Colour 1,$123.  You can select the  flashing  colours by pressing"
  51. Data "   the F/Range window. To induce the colours to flash point to the flash"
  52. Data "   number window and hold down the left mouse button.   You can increase"
  53. Data "   or decrease the flash rate by pressing the arrows to  the  right  and"
  54. Data "   left of the flash rate numbers.  The flashing can be made to flash up"
  55. Data "   or down by pressing the U/P button."
  56. Data "       Please note if you wish to copy this program to another disk, the"
  57. Data "   font  (Zfont)  must  be  transfered  with  it for the program to work"
  58. Data "   properly."
  59. Data "zzzz"