Author Topic: TabSort.lsp  (Read 87503 times)

0 Members and 1 Guest are viewing this topic.

miquan

  • Guest
Re: TabSort.lsp
« Reply #180 on: March 07, 2014, 12:25:56 AM »
Dear Lee,

Thanks for your reply.

I work with many layout tab in my project, sometimes I need to publish some of them.
I use your tab sort to manage my layouts. It is very useful.

I am very appreciated if anyone can add publish function to this lisp.

Thanks,
Miquan


Lee Mac

  • Seagull
  • Posts: 12905
  • London, England
Re: TabSort.lsp
« Reply #181 on: March 08, 2014, 09:38:14 AM »
I'm pleased to hear that you find the program so useful in your work - sorry that I cannot assist with this particular enhancement.

From what I've gathered from reading other threads on the forum, you may benefit from using Sheet Sets to publish the layouts in your drawings - though, I'll confess that I have no experience in this area.

Lee

FS

  • Mosquito
  • Posts: 2
Re: TabSort.lsp
« Reply #182 on: December 14, 2022, 12:19:25 PM »
Hello Lee,
thanks for the perfect tool!! Also in 2022!...
One little thing: Is there a possibility to make the dialog box resizable?
If you have a lot of layouts, it would be nice to be able to scale the size..

Thanks for sharing it!!!
Fritz


Lee Mac

  • Seagull
  • Posts: 12905
  • London, England
Re: TabSort.lsp
« Reply #183 on: December 14, 2022, 02:24:29 PM »
Hi Fritz,

Thank you, I'm pleased that you find the program useful.

Unfortunately resizable dialogs are not possible using standard DCL, however, you can manually tweak the size of the dialog by performing the following steps:
  • Open AutoCAD to a blank new drawing
  • At the command line, type (findfile "LMAC_TabSort_V2-2.dcl")
  • If a filepath is printed, open the file in Notepad (or another plain text editor)
  • Change line 39 from:
Code - DCL: [Select]
  1. : list_box { key = "tabs"; width = 20; fixed_width = false; alignment = centered;  multiple_select = true; }
To:
Code - DCL: [Select]
  1. : list_box { key = "tabs"; width = 20; fixed_width = false; height = 20; fixed_height = true; alignment = centered;  multiple_select = true; }
  • Save & close the modified file

FS

  • Mosquito
  • Posts: 2
Re: TabSort.lsp
« Reply #184 on: December 16, 2022, 03:13:54 AM »
Thank you so much!
Perfect!