@wluBNUD5 ,
A GUI to select multiple files using AutoLISP is not within its capabilities. BUT you can accomplish something similar implementing a loop to capture single files individually OR use AutoLISP in conjunction with DCL dialogs to create dialogs capable of selecting multiple files. AutoLISP (or even scripts) CAN loop through multiple drawings to accomplish what you are asking, scaling.
While it is not recommend to learn VBA as a new language since it is trying to be phased out, if you already know this language you can easily create your own GUI and also have this accomplish what you wish.
.NET/ObjectARX/ActiveX (C, C++, C#, VB.net) ..these languages, while pretty hard to learn if you do not already know them, give the "ultimate" capabilities as far as what you would like to accomplish. Pretty much, if you dream it, you can do it.
AutoLISP:
No - GUI
Yes - Edit multiple drawings
Slow - Speed (compared to others on list)
Easy - Capability to learn/implement (compared to others on list)
AutoLISP + DCL dialogs:
Yes - GUI
Yes - Edit multiple drawings
Slow - Speed (compared to others on list)
Medium - Capability to learn/implement (compared to others on list)
VBA:
Yes - GUI
Yes - Edit multiple drawings
Medium - Speed (compared to others on list)
Medium - Capability to learn/implement (compared to others on list)
.NET (VB.net, C#):
Yes - GUI
Yes - Edit multiple drawings
Fast - Speed (compared to others on list)
Hard - Capability to learn/implement (compared to others on list)
Best,
~DD