CADPOLE Posted November 23, 2011 Posted November 23, 2011 I use the BUB command alot in Iso drawings. I is a hand little command that makes a line from the center of your bubble to the spot you want it then trims it off at the circle. My problem is it sets my osmode to 0 and leaves it there at the end of the command. I can't figure out what lisp routine this command is attached to, so I can add a set-var at the end of the routine to refresh my osmode. . . . . . . Also I'm not sure of what text to add to accomplish this. Any ideas or advice? Quote
Cad64 Posted November 23, 2011 Posted November 23, 2011 I can't figure out what lisp routine this command is attached to The "BUB" command IS a lisp routine. It's not a standard Autocad command. Just do a search for BUB.lsp on your computer. Quote
CADPOLE Posted November 23, 2011 Author Posted November 23, 2011 You would think, Right? I did too, but no. It came to not. The search came up with bub1.lsp and bub1new.lsp but neither of thes seem to be it. (I temporarly sabotaged them and BUB still worked.) So it is under some other name. I hate when peeps do that. Quote
Cad64 Posted November 23, 2011 Posted November 23, 2011 Type APPLOAD and take a look at the list of loaded applications. Maybe you can find it that way? Otherwise, I don't know how you will find it? Quote
fuccaro Posted November 26, 2011 Posted November 26, 2011 As an ultimate (and dirty) solution, you can make a button to: 1. Save the OSMODE sysvar 2. Call the BUB routine 3. Restore OSMODE Unfortunately a lisp file can hold more routines. Once the file is loaded all the routines are available. And even worse: a file holding one or more lisp routines can have any name, no mater how the lisp functions are named. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.