TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: domenicomaria on January 31, 2021, 11:03:27 AM

Title: ddvpoint , ddview , view
Post by: domenicomaria on January 31, 2021, 11:03:27 AM
(defun C:VP () (command "ddvpoint"))
doesn't work

(defun C:VW () (command "ddview"))
doesn't work


(defun C:VW () (command "view"))
works but doesn't show the dialog

???
Title: Re: ddvpoint , ddview , view
Post by: Marc'Antonio Alessi on January 31, 2021, 12:07:52 PM
(defun C:VW () (command "view"))
works but doesn't show the dialog
???
(defun C:VW () (initdia 1) (command "view"))
Title: Re: ddvpoint , ddview , view
Post by: domenicomaria on January 31, 2021, 12:31:54 PM
the same is for 'VPOINT' (NOT 'DDVPOINT' !)

(defun C:VP () (initdia 1 )(vl-cmdf "VPOINT"))

my brain is leaving me. . .

Thank you

ciao
Title: Re: ddvpoint , ddview , view
Post by: Marc'Antonio Alessi on January 31, 2021, 12:40:17 PM
the same is for 'VPOINT' (NOT 'DDVPOINT' !)

(defun C:VP () (initdia 1 )(vl-cmdf "VPOINT"))

my brain is leaving me. . .

Thank you

ciao
:-)