minimum allowed text height in lisp

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello. I've posted this in the general AutoCAD forum, and in searching through, I found others saying such questions should be posted in this forum-- which I was not aware of.
In one of my lisps, previous programmers had set the text height to 0.006. As a result, because of the type of work we're doing, we need to scale it down after we're finished using the lisp.
Is there a minimum height allowed in AutoCAD for using lisps?
I.e., can I reduce the height to 0.002, 0.003, or something smaller than 0.006?
I've changed it to 0.002, but what that's leaving the value at the 0.006. So, even if I input 0.003, my final height is 0.009, not 0.003.
(if h (progn (while (< h 0.002) (alert msg5) (initget (+ 2 4)) (setq h (getreal msg4)) (if (null h) (setq h 0.002) ) ) (setq scf (/ h 0.002)) ) (setq scf 1) )
and yes, I've reloaded the lisp each time I make a new change.
I then did some looking around, and noted that another poster had been told that they had to set their textsize to 0.0 in their textstyle settings, otherwise, that would restrict their mimimum size to THAT setting.
So, I went into textsize and set mine to 0.0000001, because it would not accept a 0.0 setting.
Your helps would be appreciated.
TYIA.