Everything I do, I need help. I'm trying to fire a lisp called dtend which runs a short macro on a beginclose event. It exports drawing data to an excel spreadsheet. I have little or no luck designing reactors, but gave it a try. Here's the reactor: ;; callback at beginclose event (defun reactor:DTEnd (reactor info) (DTEnd)) ;; make the reactor once at loading (or dwg_reactor (setq dwg_reactor (vlr-dwg-reactor ;; we do not need any other type of lisp data here, so a little string message will be fine "DTEnd cleaner reactor" '((:vlr-beginclose . reactor:DTEnd))))) Could someone take a look at it please and give me some input?TIA