initiating lisp routine withing a routine

  • Thread starter Thread starter willie R
  • Start date Start date
W

willie R

I am trying to initialize a lisp routine while I am in another routine. I
am doing this with the call to command. can anyone help me. everything
runs fine till I try to reference the exchprop lisp routine. I am in
autocad 2002 and I have the exchprop.lsp loaded in my startup suite.

(defun c:c2 (/ curlay ss1 )
(setq curlay (getvar "clayer"))
(setq ss1 (ssget))
(command "copy" ss1 "" "0,0" "0,0")
(command "EXCHPROP" "p" "")(princ)
)
(princ)
 
Drop the "command" call to EXCHPROP
command is for AutoCad native commands

(defun c:c2 (/ curlay ss1 )
(setq curlay (getvar "clayer"))
(setq ss1 (ssget))
(command "copy" ss1 "" "0,0" "0,0")
(EXCHPROP)(princ)
)

or use (c:EXCHPROP)

ddk
 
Back
Top