Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Getting an error and not sure why.
(defun C:S2P (/ SP SPL) (vl-load-com) (setvar "cmdecho" 0) (IF (setq SPL (ssget (list '(0 . "SPLINE")))) (progn (foreach SP SPL (COMMAND "_splinedit" SP "P" "2"))) (princ "\nNo SPLINES selected: ")) (setvar "cmdecho" 1) (princ) )
Andrew Ingram
Civil 3D x64 2019
Win 10 x64 Pro
Intel Xeon E5-1620
32 GB Ram
Civil 3D x64 2019
Win 10 x64 Pro
Intel Xeon E5-1620
32 GB Ram
Solved! Go to Solution.