Hi CowboyJoe,
There is a built-in script called "Plot all Tabs", which you can use as a base (you need to edit it to point to you plotter, and "adjust" any of the plot parameters).
Here is a copy of it... (it works for me!)
;START OF SCRIPT------------------------------
;ABORT=TRUE
(if(="Model" (getvar "ctab"))
(command "_-plot"
"_Yes"
""
"\\YOUR SERVER\PRINTER"
"11 x 17"
"_Inches"
"_Landscape"
"_No"
"_Display"
"_Fit"
"0.00,0.00"
"_Yes"
""
"_Yes"
"_No"
""
"_No"
"_Yes"))
(progn
(foreach laylist (vl-remove "Model"(layoutlist))
(setvar "ctab" laylist)
(command "_-plot"
"_Yes"
""
"\\YOUR SERVER\PRINTER"
"11 x 17"
"_Inches"
"_Landscape"
"_No"
"_Display"
"_Fit"
"0.00,0.00"
"_Yes"
""
"_Yes"
"_No"
"_No"
"_No"
""
"_No"
"_Yes")))
;END OF SCRIPT------------------------------
I hope this helps you out.
Regards,
Bill