Selecting tabs and looping

Discussion in 'AutoCAD' started by Kiwi Russ, May 12, 2004.

  1. Kiwi Russ

    Kiwi Russ Guest

    How can I loop through all tabs selected in a drawing so that each one is
    plotted. I ask because acad 2005 will only plot one one tab, even if you
    select all of them. If you can plot one tab surely with a bit of clever code
    it may be possible to plot all tabs selected, by looping through them?
    thanks Russ
     
    Kiwi Russ, May 12, 2004
    #1
  2. I don't have 2005, but this might work.

    (foreach LLN (layoutlist)
    (setvar "CTAB" LLN)
    (command "-plot" ......)
    )
     
    Alan Henderson @ A'cad Solutions, May 12, 2004
    #2
  3. Isn't sheet sets the cool new way to batch plot?
     
    Tony Tanzillo, May 12, 2004
    #3
  4. Kiwi Russ

    Kiwi Russ Guest

    sheet sets the cool new way to batch plot

    As mentioned in my previous post, the problem starts when you want to
    want to use another printer and you have portrait and landscape or some
    other specific parameter for any drawing you want to select. This means
    having to go through your list of drawings that you want to print and assign
    previously saved page set ups to each dwg. All the time trying to work out
    which page setup goes with what dwg. You can save your list of page setups
    for dwgs you want to print, but what say if you only want to print the first
    3 or every second one or what ever. You end up with different saved list for
    every concievable combination. Arrrggghhh!
     
    Kiwi Russ, May 13, 2004
    #4
  5. Kiwi Russ

    Kiwi Russ Guest

    Alan
    many thanks - I haven't got it working properly yet, but it's in the right
    direction
    cheers
    Russ
     
    Kiwi Russ, May 13, 2004
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.