home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / pcmag / v14n05 / bluebo.txt next >
Text File  |  1994-12-02  |  818b  |  25 lines

  1.     --This script formats the selected object with a light blue fill,
  2.     --a red outline, and a gray drop shadow.
  3.  
  4.     --Defines a new light blue color 
  5. definecolor "Bluebox", process, cmyk, false, 15,10,0,10    
  6.     --Defines a new dark red color
  7. definecolor "Redline", process, cmyk, false, 10,80,60,10
  8.     --Defines a new gray color
  9. definecolor "Shadow", process, cmyk, false, 0,0,0,30
  10.     --Assigns colors to selected object
  11. fillandline (2, "Bluebox", off) (twopoint, off, , , "Redline", on)
  12.     --Copies selected object to clipboard
  13. copy
  14.     --Pastes, offsets copy, copy is selected
  15. multiplepaste 1, .25i, .25i
  16.     --Assigns solid fill to selected object
  17. fillstyle 2
  18.     --Assigns gray color to selected object
  19. color "Shadow"
  20.     --Assigns no line to selected object
  21. linestyle none
  22.     --Sends drop shadow to back
  23. sendtoback
  24.  
  25.