Message 1 of 6

Not applicable
07-01-2016
04:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
I made the following autolisp program to quickly make grid line text. I don't understand why I get the error fixnump nil? Also, Visual Lisp Editor doesn't automatically return to Visual Lisp, and when I click on 'Go to last break source' it gives me the error :CALLBACK-ENTRY?
(defun c:gr ()
(setq st (getint "Enter starting grid: "))
(setq p1 (getpoint "Click where to start grid: "))
(setq tz (getreal "Enter text height: "))
(repeat
(command "text" p1 tz 0 (itoa st))
(setq p1 (getpoint "Click on next grid: "))
(setq st (+ 1 st))
)
)
Solved! Go to Solution.