Message 1 of 23
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi I'm trying to use ssget to select a polyline that controls a viewport and move it from one page to another. However, no matter what I do my script only selects the first viewport and copies that across all pages instead. Any ideas what is wrong with these lines?
(setq min-point (list -1e9 -1e9 0)) ; Define a very large minimum point
(setq max-point (list 1e9 1e9 0)) ; Define a very large maximum point
(setq viewport-entity (ssget "C" min-point max-point '((0 . "POLYLINE") (8 . "-VPORT"))))
Solved! Go to Solution.