
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm using Civil 3D 2014 as regular AutoCAD.
"bclose" is the command to close the block editor. I had a custom lisp command to do this in one step, and I know it worked great in AutoCAD 2013, but it doesn't seem to work in 2014.
(defun c:shawn ()
(command "_.bclose" "_sav")
(princ) ;/silent exit
)
When I try this in 2014, it runs the bclose command properly, but it asks me if I want to save or discard changes. I hit save changes, and the console says there is no "_sav" command
Command: SHAWN
_.bclose Regenerating model.
Command: _sav Unknown command "SAV". Press F1 for help.
Any ideas what I need to change? I originally created that lisp command by looking at the command AutoCAD 2013 runs when I click close block editor and select save changes. in 2014, it just shows bclose and no arguments behind it, so I can't figure out how it determines whether or not to save.
Solved! Go to Solution.