home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 179.img / WS6#18P5.LZH / DPSFEED.PS < prev    next >
Text File  |  1990-02-17  |  1KB  |  62 lines

  1.  
  2. %  .bn1 pull from internal tray on the dp 1260.
  3. /dpi 
  4. {
  5.     statusdict begin 0 setpapertray end
  6. } def
  7.  
  8. %  .bn2 pull from lower option tray on the dp 1260.
  9. /dpl 
  10. {
  11.     statusdict begin 2 setpapertray end
  12. } def
  13.  
  14. %  .bn3 pull from upper option tray on the dp 1260.
  15. /dpu 
  16. {
  17.     statusdict begin 1 setpapertray end
  18. } def
  19.  
  20. %  .bn4 pull from envelope tray on the the dp 1260.
  21. /dpe 
  22. {
  23.     statusdict begin 3 setpapertray end
  24. } def
  25.  
  26. %  .bn5 pull letter from manual tray on the dp 1260.
  27. /dpml 
  28. {
  29.     statusdict begin 4 setpapertray end userdict begin letter end 
  30.     /pgsize 11 inch def
  31. } def
  32.  
  33. %  .bn6 pull legal from manual tray on the dp 1260.
  34. /dpmlg 
  35. {
  36.     statusdict begin 4 setpapertray end userdict begin legal end 
  37.     /pgsize 14 inch def
  38. } def
  39.  
  40. %  .bn7 pull A4 from manual tray on the dp 1260.
  41. /dpma4 
  42. {
  43.     statusdict begin 4 setpapertray end userdict begin A4 end 
  44.     /pgsize 11.69 inch def
  45. } def
  46.  
  47. %  .bn8 output stack face down on the dp 1260.
  48. /dpfd 
  49. {
  50.     usertime 20000 add {dup usertime lt { pop exit } if} loop
  51.     statusdict begin 0 setoutputtray end
  52.     usertime 20000 add {dup usertime lt { pop exit } if} loop
  53. } def
  54.  
  55. %  .bn9 output stack face up on the dp 1260.
  56. /dpfu 
  57. {
  58.     usertime 20000 add {dup usertime lt { pop exit } if} loop
  59.     statusdict begin 1 setoutputtray end
  60.     usertime 20000 add {dup usertime lt { pop exit } if} loop
  61. } def
  62.