I am looking for a routine to change, or plot, every tab in a multi tab drawing. I used to be able to plot all tabs in previous versions of cad. I found a portion of a routine that seems like it might work with some manipulation but I don't know what is going wrong with it as is. It was originally a lisp to plot multi tab drawings. (progn (foreach mb (vl-remove "Model" (layoutlist)) (setvar "ctab" mb) (command "INSERT ROUTINE HERE") )) Any input would help.