Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm redefining a block inside a LISP routine, AutoCAD is making the block ANNOTATIVE, which I don't want.
;; blk = block name, fn = full path to dwg
;; all blocks in this case have attributes
(command "-insert" (strcat blk "=" fn) "") (command "_.attsync" "_name" blk)
After this procedure, some portions of the block are disappearing, and one of the attributes that happens to be preset and when the block is inserted this attribute is not in the correct location (moves to 0,0 I believe).
When I tried this manually I realized the INSERT command prompts for an annotative scale and makes the block annotative.
So I'm wondering how to redefine without converting the block to be annotative.
Solved! Go to Solution.