Hi vdesai,
The plot scripts with A2K (and higher) are a little more complicated than they were in R14. There are a ton of settings that need to be adjusted depending on your personal setup.
Here is one that you can modify to suit your needs. Every line that begins with a ";" is a "comment", and is ignored by AutoCAD.
Depending on your settings, you might see different options in the prompts, so the script below is only a loose template.
The best way to go about things, is to type -PLOT at the YOUR AutoCAD command prompt and go through each step manually. Once completed, use the "Command Capture" tool in Hurricane to capture all the commands.
Check these links out...
http://www.74mph.com/faq/FAQ00089.html
http://www.74mph.com/faq/FAQ00116.html
;BEGIN SCRIPT
-PLOT
;Detailed plot configuration? [Yes/No]
YES
;Enter a layout name or :
MODEL
;Enter an output device name or
HP LaserJet 5L <--- CHANGE THIS
;Enter paper size or <Letter>
LETTER
;Enter paper units [Inches/Millimeters]:
MILLIMETERS
;Enter orientation [Portrait/Landscape]:
LANDSCAPE
;Plot upside down? [Yes/No]
NO
;Enter plot area [Display/Extents/Limits/View/Window]
E
;Enter plot scale (Plotted Millimeters=Drawing Units) or [Fit]
FIT
;Enter plot offset (x,y) or [Center]
0,0
;Plot with plot styles? [Yes/No]
YES
;Enter plot style table name or (enter . for none)
.
;Plot with lineweights? [Yes/No]
YES
;Enter shade plot [As Display/Wire/Hidden/Rend]:
A
;Write the plot to a file [Yes/No]
N
;Save changes to page setup [Yes/No]
N
;Proceed with plot [Yes/No] <Y>:
Y
;END SCRIPT
Regards,
Bill