I thought it would be a simple line to write (for me that is).
I would like to create a two buttons to add to my personal toolbar:
"Print Previous" and another bottun to
"Print Previous, Apply To Layout & Print"
Am on AutoCAD 2010 & 2011
Thanks
Oka
I thought it would be a simple line to write (for me that is).
I would like to create a two buttons to add to my personal toolbar:
"Print Previous" and another bottun to
"Print Previous, Apply To Layout & Print"
Am on AutoCAD 2010 & 2011
Thanks
Oka
Have you tried the action recorder? I would think this would work for your situation.
If you have a technical question, please find the appropriate forum and ask it there.
You will get a quicker response from your fellow AUGI members than if you sent it to me via a PM or email.
jUSt
What I did was use the plot command and made sure all of my settings were correct- then clicked the "apply to layout" button. Then i used "-plot" to run the plot command through the command line- and then pulled all of the settings i had set the first time when i hit "apply to layout". when it asks "Detailed plot configuration?", enter Y for yes and then it will show you all of the different things you set the first time through. Then by using those settings in a lisp routine- you can accomplish what you're trying to do.
I know it's not exactly print previous- but if you print the same every time- that would pretty much be the same. Here's the lisp i wrote- you will need to change the printer, plotstyle, etc...
(DEFUN C: plot2436()(COMMAND "-plot" "y" "" "KIP All-Other Systems.pc3" "Arch D (24 x 36 Inches)" "i" "L" "N" "W" "0.000000,0.000000" "36.000000,24.000000" "1:1" "0.00,-0.00" "Y" "$VI_FULL.ctb" "Y" "N" "N" "N" "N" "Y" "Y"))