Message 1 of 11
Set specefics values to the prompt and run other rotine using that values
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi Guys, can I specify the required values of a lisp and run it like a AutoCAD command (without coping the code or modifying the original)?
Example:
When I use commands, I can specify previosly and run in silent mode:
(command "._-Layer" "M" "Walls" "C" "6" "" "")
If I try it on a lisp, it doesn't work:
(defun c:POA()
((C:PORTA2D )"A") )
In this case, I have a lisp wich inserts Door blocks and when I use the command, the "A" option insert a Single flush door.
TIA