Message 1 of 6
Delay between commands
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi peeps!
So im trying to create a delay between commands, but instead of the delay pausing between commands, it delays the entire defun. I know I've done this before, i just can't remember how. What am i doing wrong?
For example, the delay command will run before the zoom extents instead of after.
(defun c:PI()
(command "z" "e")
(command "delay" "3000")
(command "z" "a")
)