twallace-Magee Posted July 12, 2010 Posted July 12, 2010 I am not sure this is the right place to post this but best I found. I am using AutoCAD 2011 and stumbled on the bindtype variable. What I would like to know is how to write a lisp to run on startup to set this variable to value 1 every time I open a drawing. This bindtype does not get saved in the file or the basic system. Quote
lpseifert Posted July 12, 2010 Posted July 12, 2010 add this to your acaddoc.lsp file (if you don't have an acaddoc.lsp file, create one...look in Help) (setvar "bindtype" 1) Quote
gile Posted July 12, 2010 Posted July 12, 2010 Hi you can create a file named acaddoc.lsp in the search path and add to this file the following LISP expression: (setvar "BINDTYPE" 1) Quote
twallace-Magee Posted July 12, 2010 Author Posted July 12, 2010 Thank you works like a charm. I have made Lisps in the past (long past pre-2000 and only simple ones) but not since then and did not know how to force the run. 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.