Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone:
I want to select the texts and lines that have the desired characteristics in the specified layer,
but I am having trouble filtering them:
(setq layerindex (itoa (getint "Enter Layer Index Number: ")))
(setq layername (strcat "Number Vertex " layerindex))
(setq sstotal (ssget "X" '((-4 . "<OR")
(-4 . "<AND") (list '(0 . "TEXT") (cons 62 256) (cons 8 layername)) (-4 . "<AND")
(-4 . "<AND") (list '(0 . "LINE") (cons 62 22) (cons 8 layername)) (-4 . "<AND")
(-4 . "OR>"))
)
)
Thank you for guiding me.
Solved! Go to Solution.