selection tool
selection tool
(OP)
In AC 2006, (I no longer use...left company) there is a cool feature where the selection window is colored. Is it possible to incorporate that into AC 2004?
thanks
thanks
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: selection tool
http://mechcad-insider.blogspot.com/
"The fear of the Lord is the beginning of wisdom"
RE: selection tool
RE: selection tool
http://mechcad-insider.blogspot.com/
"The fear of the Lord is the beginning of wisdom"
RE: selection tool
____________________
Acad2006, Terramodel
RE: selection tool
RE: selection tool
Below is a lisp routine that I would like to be able to select the text size as part of the prompt in command line. I don't know anything about lisps but on the third line it says about txt height and getvar so is the answer there already and I am missing something.
Thanks for any help
Taffcad
(defun c:AUTONUM ()
(setvar "cmdecho" 0)
(if (null txtht) (setq txtht (* 0.125 (getvar "ltscale"))))
(setq pt1 (getpoint "\nSelect starting point: "))
(setq n1 (getint "\nEnter first number: "))
(setq n2 (getint "Enter last number: "))
(setq inc (getint "Enter increment: "))
(setq drctn (getint "Enter 1 for hor, 2 for vert, 3 for angle: "))
(setq vfeed (getreal "Enter distance between numbers: "))
(setq hfeed vfeed)
(if (= drctn 1) (setq vfeed 0))
(if (= drctn 2) (setq hfeed 0))
(while (<= n1 n2)
(command "text" "c" pt1 txtht "0" n1)
(setq pt1 (list (+ hfeed (car pt1)) (+ vfeed (cadr pt1))))
(setq n1 (+ n1 inc))
)
RE: selection tool
When you hold down the left button and make a rectangle to select somethign, normally the graphic is only a white border. In 2006, that white border is filled in with an opaque color, a different color for 'selection only' (left to right) and 'select everything' (right to left)
RE: selection tool
Nope, Selectionarea wasn't introduced until 2006.
____________________
Acad2006, Terramodel
RE: selection tool
http://mechcad-insider.blogspot.com/
"The fear of the Lord is the beginning of wisdom"
RE: selection tool