home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / print / sjii.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1993-02-01  |  5KB  |  86 lines

  1. @echo off
  2. cls
  3. echo ┌─────────────────────────────────────────────────────────────────┐
  4. echo │                                                                 │
  5. echo │ softJET II                                         version 2.3A │
  6. echo │                                                                 │
  7. echo │ Thank you for choosing softJET II to enhance your productivity  │
  8. echo │ with Hewlett Packard's line of HP LaserJet printers and         │
  9. echo │ compatibles.                                                    │
  10. echo │                                                                 │
  11. echo │ This demonstration will use softJET to display a number of      │
  12. echo │ LaserJet output files on your screen. Each example is designed  │
  13. echo │ to demonstrate some unique aspect of softJET and how to use it. │
  14. echo │ Simply read the instructions that appear before each example    │
  15. echo │ and then press any key to see it.                               │
  16. echo │                                                                 │
  17. echo │ (You can also copy any of the ".PCL" files to your LaserJet     │
  18. echo │ printer with the DOS "COPY/B file PRN" command.)                │
  19. echo │                                                                 │
  20. echo │ Copyright (c) 1990..93 by Wesley Steiner. All rights reserved.  │  
  21. echo │                                                                 │
  22. echo └─────────────────────────────────────────────────────────────────┘
  23. pause
  24.  
  25. if not exist order.pcl goto no_order
  26. cls
  27. echo ┌─────────────────────────────────────────────────────────────────┐
  28. echo │ This example will preview the softJET II Donation and Order     │
  29. echo │ form that can be printed on any HP LaserJet printer.            │
  30. echo │                                                                 │
  31. echo │ The preview will show the page in what is called the 'ZOOM'     │
  32. echo │ view. This is the default view when you start softJET. It shows │
  33. echo │ the entire page width on the screen.                            │
  34. echo │                                                                 │
  35. echo │ The bottom line on the screen displays relevant information     │
  36. echo │ about the file you are previewing including; the file name, the │
  37. echo │ current page number and any Cartridges or Soft Fonts you may    │
  38. echo │ have installed.                                                 │
  39. echo │                                                                 │
  40. echo │ The ENTER key will switch between the ZOOM and DRAFT views. In  │
  41. echo │ the draft view a large rectangle appears over the page after it │
  42. echo │ has finished drawing. This rectangle represents the current     │
  43. echo │ 'zoom'area when you switch back to the zoom view.               │
  44. echo │                                                                 │
  45. echo │   Use the 'Escape' key to exit softJET and continue the demo.   │
  46. echo └─────────────────────────────────────────────────────────────────┘
  47. pause
  48. sj order.pcl -dir .
  49. :no_order
  50.  
  51. if not exist blurb.pcl goto no_blurb
  52. cls
  53. echo ┌─────────────────────────────────────────────────────────────────┐
  54. echo │ This example previews a LaserJet output file that uses the F    │
  55. echo │ (Tms Rmn) cartridge.                                            │
  56. echo │                                                                 │
  57. echo │ You will see the characters displayed in the appropriate fonts  │
  58. echo │ as they would appear when printed (with the F cartridge).       │
  59. echo │                                                                 │
  60. echo │ When in the Zoom view you can press:                            │
  61. echo │                                                                 │
  62. echo │  {arrows} to scroll around the page (faster with the Shift key) │
  63. echo │                                                                 │
  64. echo │  Ctrl+{left_arrow}  - to Zoom IN  by a factor of 2              │
  65. echo │  Ctrl+{right_arrow} - to Zoom OUT by a factor of 2              │
  66. echo │                                                                 │
  67. echo │ These keys also operate while in the Draft view by resizing the │
  68. echo │ zoom window.                                                    │
  69. echo │                                                                 │
  70. echo │   Use the 'Escape' key to exit softJET and continue the demo.   │
  71. echo └─────────────────────────────────────────────────────────────────┘
  72. pause
  73. sj blurb.pcl -dir . -c f
  74. :no_blurb
  75.  
  76. if not exist fdemo.pcl goto no_fdemo
  77. cls
  78. echo ┌─────────────────────────────────────────────────────────────────┐
  79. echo │                                                                 │
  80. echo │ FDEMO.PCL                                                       │
  81. echo │                                                                 │
  82. echo └─────────────────────────────────────────────────────────────────┘
  83. pause
  84. sj fdemo.pcl -dir . -c f
  85. :no_fdemo
  86.