PDA

View Full Version : Using Express Tool's Overkill Command


sivampeta_dheeraj
2008-07-24, 05:12 PM
How can I incorporate the express tool's add on command like 'overkill'
into Autolip.
Actually I am writing a small code like

(defun c:ok()
(command "overkill")
)

but the command ok is not working.What may be the problem?

Moderator Note:
Please use [ CODE ] tags... (http://forums.augi.com/misc.php?do=bbcode#code)

rkmcswain
2008-07-24, 06:02 PM
Try this...

(defun c:ok ()
(c:overkill)
)

sivampeta_dheeraj
2008-07-26, 08:45 PM
Try this...

(defun c:ok ()
(c:overkill)
)


Thank You it works.But can I know the philosophy behind the fact of using ((C:Express Tool Command);like (C:Layiso)) syntax to access the express tool commands from Autolisp.

rkmcswain
2008-07-27, 02:50 PM
Looks like you started a new thread