arri
Guest
if you are using windows xp (and higher) and a pc with a sound card, you can easily make your autocad talk.
for speech-output you can use the sapi interface in windows and call it from autocad e.g. through lisp:
(setq sapi (vlax-create-object "sapi.spvoice"))
(vlax-invoke sapi "speak" "here is your autocad" 0)
(vlax-release-object sapi)
http://www.cadforum.cz/cadforum_en/qaid.asp?tip=5404
for speech-output you can use the sapi interface in windows and call it from autocad e.g. through lisp:
(setq sapi (vlax-create-object "sapi.spvoice"))
(vlax-invoke sapi "speak" "here is your autocad" 0)
(vlax-release-object sapi)
http://www.cadforum.cz/cadforum_en/qaid.asp?tip=5404
Last edited: