The implementation in this recent post to display a “Help!” message to the screen was well received by the person requesting it, but they ended up also wanting a command to display a message in the case that the user has help to offer other members of the class. Which basically meant a great opportunity to refactor the previous implementation, so that it could be used more generally. :-) Here’s the updated C# code which now implements a generalised “flash message” capability that is used by both the original HELPME and the new HELPYOU commands: using Autodesk.AutoCAD.ApplicationServices; using Autodesk.AutoCAD.Runtime;... Read more →