Announcements
IMPORTANT. Forum in Read Only mode. You can no longer submit new questions or replies. Please read this message for details
Autodesk Architectural Desktop 2007 & Prior
Welcome to Autodesk’s Autodesk Architectural Desktop 2007 & Prior Forums. Share your knowledge, ask questions, and explore popular Autodesk Architectural Desktop 2007 & Prior topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Express Tool Alias Commands

4 REPLIES 4
Reply
Message 1 of 5
ddarling
230 Views, 4 Replies

Express Tool Alias Commands

The following used to work in a lisp file but now fails in ADT2006. Can someone correct this for me?

(defun C:FR ()
(command "LAYFRZ")
)
(defun C:LF ()
(command "LAYOFF")
)
(defun C:LN ()
(command "LAYON")
4 REPLIES 4
Message 2 of 5
Anonymous
in reply to: ddarling

While you wait...

I simply do those quick-keys in the PGP file instead of
lisp, which is reserved for more complex programming and
settings options as needed. Keeps me sane and organized LOL

--
Dean Saadallah
Add-on products for LT
http://www.pendean.com/lt
--
Message 3 of 5
ddarling
in reply to: ddarling

Sure.

This is different. The user needs to maintain her own file containing Alias commands. We do this here using lisp and load through AppLoad.

All other commands work. Only this express commands do not work.
Message 4 of 5
Anonymous
in reply to: ddarling

Try these instead; it would appear that you can not call LISP-defined commands using the command function in LISP.

(defun C:FR ()
(C:LAYFRZ)
)
(defun C:LF ()
(C:LAYOFF)
)
(defun C:LN ()
(C:LAYON)
)

--

David Koch
Autodesk Discussion Group Facilitator
Using ADT 2004 at work; access to 2005, 2006 & 2007 at home
Message 5 of 5
ddarling
in reply to: ddarling

Thank you, that fixed the problem.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report