Display full version of the post: Can AutoCAD Talk

mreuter
22.10.2018, 21:32
Has anyone ever heard of any lisp etc that will let AutoCAD talk to the user?

rebellio
23.10.2018, 08:18
(DEFUN c:speak ()  (setq sapi (vlax-create-object "Sapi.SpVoice"))  (vlax-invoke sapi "Speak" "m roiter!." 0)  (vlax-invoke sapi "Speak" "What are you doing?." 0)  (vlax-release-object sapi)  )It is just for fun, no functionality!Just googled and slightly adjusted.
rebellio2018-10-23 08:26:57

laurastrolaite
25.10.2018, 21:31
Hi, I just wanna ask how I can to download blocks, thanks

laurastrolaite
25.10.2018, 21:33
[QUOTE=mreuter]Has anyone ever heard of any lisp etc that will let AutoCAD talk to the user?[/QUOTE]
No

philippe JOSEPH
26.10.2018, 07:12
Hello laurastrolaite, you can download blocks from the CAD/BIM Blocks library here in the site.Launch a search by names and you will get things.

Vladimir Michl
30.10.2018, 17:41
See the related tip #5404.