Message 1 of 3
timer reactor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I have a lisp to switch the gripsize and i'd like to implement a reactor that
sets the gripsize to 5 after 5 seconds when the command runs.
I've been trying to manipulate the code from this page:
;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/personal-infofield-in-statusbar/td-p...
and Im not dealing with the reactors
any help?
(defun C:CF ( );;Switch GRIPSIZE 28-3-19 (SETQ PBB (GETVAR ' GRIPSIZE)) (IF (< PBB 35) (SETVAR "GRIPSIZE" 35) (IF (> PBB 6) (SETVAR "GRIPSIZE" 5) );IF );IF );DEFUN ;;;;;;;;;;;;;;;;;;;