2008-04-28 15:14 UTC
5.0.0.13
I'm trying to use the two new events, OnMouseEntered & OnMouseMovedOff, to automatically roll up a modeless form. I'm using the two subs below just to see when the events are firing: this throws AutoCAD in to a loop printing the two princs at the command line over and over. Must use Task Manager to shut down AutoCAD. What's the appropriate use of these two events???
Thanks for any help . . .
jb
I'm trying to use the two new events, OnMouseEntered & OnMouseMovedOff, to automatically roll up a modeless form. I'm using the two subs below just to see when the events are firing: this throws AutoCAD in to a loop printing the two princs at the command line over and over. Must use Task Manager to shut down AutoCAD. What's the appropriate use of these two events???
(defun c:jb001_00_OnMouseEntered ( /)
(princ "\nOnMouseEntered")
)
(defun c:jb001_00_OnMouseMovedOff ( /)
(princ "\nOnMouseMovedOff")
)Thanks for any help . . .
jb