Message 1 of 13
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dear coders
Using lisp I place Attributes inside a block
Accept 1 thing all it working fine
The alignment does not want to update correctly
Assoc 10 and assoc 72 are coming from an entity that is being deleted afterwards ( MTEXT entity )
(setq assoc10 (cdr (assoc 10 atte))) (setq assoc72 (cdr (assoc 72 atte))) (setq attt (RemovePairs atte '( 10 72 ))) (setq ptt (append '( (0 . "ATTDEF") ) attt (list (cons 10 assoc10)(cons 72 assoc72)))) (entmod ptt)
Remove pairs is a function to remove the Assoc pair you like ( in this case I remove ASSOC 10 and ASSOC 72 and append them later with correct values )
The yellow is MTEXT and alignment is top center while the white one is the Attribute and alignment is left
The entmod is updating but for some reason the Attribute is not updating ASSOC 72
How to fix this?
If this was of any help please kudo and/or Accept as Solution
Kind Regards
Kind Regards
Solved! Go to Solution.