Message 1 of 11
Creating a Pause in my Lisp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
OK, so I am trying to create a 3 key command to fire the Line by Bearing and Distance. It is a pull down, but I am a keyborad masher and it helps me be more produtctive. I tried the following for the routine, the problem is that when I run it, it seems to fire off just fine, but the first set of coordinates and distance I enter does nothing and it prompts me for a start point again and then works like it should. I am guessing that I need a pause for the line command to let me pick my point first, but have been unsuccessful at putting one in.
(defun c:tra ()
(command "line" "'BD")
(princ)
)
Thanks,
Chris M Davis