CompuServe Thread

#Beep!!!

4 messages in this thread
#28767From: ALBERT M THALHEIMJan 15, 1992 2:17 PM
Hello, ALL. Following Dave Byrnes' suggestion. I'm looking for a TIP that makes AutoCAD BEEP. Thanks. Albert
#28782From: Dave Byrnes [AEC TM]Jan 15, 1992 2:57 PM
Well, NOW we're getting somewhere <grin>. How's about this one, from Lib 2 "AutoLISP/ADS": [72040,467] BEEP.LSP 02-Mar-91 2348 60 Title : BEEP; Sounds two short beeps Keywords: BEEP BGASOFT LARGE FILE REMINDER BEEP does just that; it sounds two short beeps any time it is executed. This comes in handy if you work on large files or any time you execute a command which takes a while. Uploaded by ASP Member Robert Gurrieri BGASoft (Approximate download time at 2400 baud using CIS B+ is 0:11) (Sysop Note: This file is in ASCII format, and can be read online, captured to a file or downloaded with a protocol.) Happy beeping! Dave
#28841From: Mark Middlebrook[AcadTM]Jan 15, 1992 10:04 PM
Albert: Here's one from TonyT: (defun beep ( / f) (princ (chr 7) (setq f (open "CON" "w"))) (close f) ) – Mark M.
#28895From: Tony Tanzillo [LISP TM]Jan 16, 1992 1:14 AM
Al – Try this: (defun beep ( / f) (princ "\007" (setq f (open "CON" "w"))) (setq f (close f)) ) -TonyT.