Message 1 of 8
Hard enter/accept defaults on a Sub LISP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have lisp routine that calls out a sub c:lisp routine. Normally if I just run the sub lisp by itself it asks three questions and I can very quickly hit enter 3 times to accept the defaults. Now in my new lisp, how can I code these three rapid hard enters? With a normal command I can do (command "command" "" "" "") but that wont work since this is not an actual ACAD command.
I thought maybe I could do something like this:
setq Ent ("" "" "")
(c:lisp Ent Ent Ent)
But that doesn't work.
Any suggestions?