Author Topic: Cursor Command Line Prompts  (Read 2321 times)

0 Members and 1 Guest are viewing this topic.

DanB

  • Bull Frog
  • Posts: 367
Cursor Command Line Prompts
« on: May 19, 2005, 01:00:19 PM »
(AutoCAD 2006)
I myself do not care for the new command line at the cursor but there are a couple people wishing to use this at our office. Does anyone know how to display results at the cursor through LISP. It seems only certain prompting actually goes to the cursor command line. Below is a very simple example where after setting the user osnaps they would like to see the prompt at the cursor. Ideas? Hints? One command we have seen display results at the cursor is the "Distance" command.

Thanks,
Dan

Code: [Select]

 (defun C:S3 (/)
  (setvar "osmode" 160)
  (prompt "\nOSNAP Set to INTersection + PERpendicular")
  (princ)
 )

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Cursor Command Line Prompts
« Reply #1 on: May 19, 2005, 01:06:23 PM »
Hint: Exploit hyperlinks.
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

DanB

  • Bull Frog
  • Posts: 367
Cursor Command Line Prompts
« Reply #2 on: May 20, 2005, 07:07:54 AM »
hmmm..ok, I'll see what I can find. Thanks for the tip.

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Cursor Command Line Prompts
« Reply #3 on: May 20, 2005, 07:43:03 AM »
If you don't mind paying for someone else's fine expertise there's also tools like periscope from manusoft --



I don't use it so I'm not familiar with all it's options. Maybe it will do what you like, perhaps not. There is an eval version at the url I provided. Cheers.
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst