home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / m / mg10.zip / EXAMPLE.ZIP / EXAMPLE.SCR < prev    next >
Text File  |  1993-01-04  |  4KB  |  109 lines

  1. ; DATE command must be followed by the full month name, the day of the
  2. ; month, a comma, and then the year.  It must be the only command found
  3. ; on the line.  This command is required.
  4.  
  5. date November 19, 1992
  6.  
  7. ; TITLE command must be followed by the name of the magazine contained
  8. ; within double quotes.  This is the name used to compile entire
  9. ; publications, so it must be the same through multiple magazines.  When
  10. ; magcom is checking for publications, the title of the magazines are
  11. ; case insensitive.  This command must also be the only command specified
  12. ; on this line.  This command is required.
  13.  
  14. title "Test Magazine"
  15.  
  16. ; VOLUME command must be followed by the current volume number of this
  17. ; magazine.  It must be the only command specified on this line.  A
  18. ; volume number of 0 indicates a 1 time article.  This command is required.
  19.  
  20. volume 3
  21.  
  22. ; ISSUE command must be followed by the current issue number of this
  23. ; magazine.  It must be the only command specified on this line.  An
  24. ; issue number of 0 indicates a 1 time article.  This command is required.
  25.  
  26. issue 10
  27.  
  28. ; THEME command must be followed by the theme of this particular
  29. ; magazine.  The theme should be enclosed within quotes, and should be
  30. ; the only command specified on this line.  This command is required.
  31.  
  32. theme "Showing you how to get this working"
  33.  
  34. ; INTRODUCTION command is optional.  It allows you to specify an ANSI
  35. ; and ASCII text file that will be displayed when someone initially
  36. ; decides to read this magazine.  It should be followed by the ANSI file
  37. ; name, and then the ASCII file name.  If you wish to leave ONE of these
  38. ; blank (ie you only have an ASCII file created), simply replace the
  39. ; file name with the word "none" (without the quotes).
  40.  
  41. introduction intro.ans intro.asc
  42.  
  43. ; LEVEL command is the core of the entire script.  It allows Magcom
  44. ; to create all the different levels, departments, areas, etc. etc.
  45. ; that you wish.  The level command should be followed by a number
  46. ; signifying the level for this article.  Following should be the title
  47. ; of the article enclosed in double quotes.  Finally, the optional file
  48. ; name of the article (the actual article text) may be next.  If this
  49. ; file name is not found, you MUST advance to a new level on the next
  50. ; command, and this level will be viewed as an option to a new level.
  51. ; For example :
  52. ;
  53. ; level 1 "Editorials"
  54. ;   level 2 "Jasen's editorial" jasen.txt
  55. ;   level 2 "Joe's editorial" joe.txt
  56. ;
  57. ; level 1 "Pascal article" pascal.txt
  58. ;
  59. ; following the last level command (the pascal one), you would NOT
  60. ; be allowed to advance a level because the article name had already
  61. ; been signified.  You are only allowed to advance a level IF you have
  62. ; not yet signified this file name.  Finally, if a file name has been
  63. ; specified, you may add the AUTHOR command, followed by the name of
  64. ; the author in double quotes, immediately after the file name of the
  65. ; text article.  For example :
  66. ;
  67. ;       level 1 "Editorial" editor.txt author "Jasen Fici"
  68. ;
  69.  
  70. level 1 "Editorial" editor.txt author "Jasen Fici"
  71.  
  72. level 1 "News"
  73.  
  74. ; The indentation is optional, and ignored.  It is simply here for
  75. ; ease of reading.
  76.  
  77.         level 2 "Turbo Pascal Review" tp.rev author "Joe Shmoe"
  78.         level 2 "C Review" c.rev
  79.  
  80. level 1 "Write In Articles"
  81.  
  82.         level 2 "Tommy's Corner"
  83.  
  84.                 level 3 "My Morning"
  85.  
  86.                         level 4 "Why I hate morning" hate.txt menu morn.mnu
  87.                         level 4 "Why I love sleeping" love.txt
  88.                         level 4 "What I do in the morning" do.txt
  89.  
  90.                 level 3 "My Afternoon" noon.txt
  91.                 level 3 "Night Time"
  92.  
  93.                         level 4 "Why I love evenings" lovenight.txt
  94.                         level 4 "What I dream of" dream.txt
  95.  
  96.         level 2 "Jasen's Editorial" jasen.txt
  97.  
  98. level 1 "This weeks Program" prog.txt
  99. level 1 "In Closing" done.txt
  100.  
  101. ; (finally!) LEAVING command is optional, and allows you to set up
  102. ; ANSI and ASCII files that will be shown to users as they "leave" the
  103. ; magazine.  If you wish to have only one file (an ANSI or ASCII one),
  104. ; simply put the word "none" (without the quotes) in place of the file
  105. ; that does not exist.  The first file is the ANSI file, and the second
  106. ; file is the ASCII one.
  107.  
  108. leaving done.asc done.ans
  109.