PDA

View Full Version : Turning UCS icon off on startup



bholden.97697
2006-12-04, 11:22 PM
I find myself constantly turning the ucs icon off. Is there a way to set autocad so the ucs icon never comes on?

.T.
2006-12-04, 11:56 PM
I find myself constantly turning the ucs icon off. Is there a way to set autocad so the ucs icon never comes on?

One way is to add (setvar "ucsicon" 0) to your acaddoc.lsp.

robert.1.hall72202
2006-12-11, 06:18 PM
This is one of the first items I added to my startup. AutoDesk should add a setting for this somewhere.

Opie
2006-12-11, 06:21 PM
I find myself constantly turning the ucs icon off. Is there a way to set autocad so the ucs icon never comes on?
To add to Tim's solution, I have this in my AutoLISP toolbox.


(defun C:UI (/) ; Changes ucsicon variable to on/off or off/on
(setvar "ucsicon" (abs (1- (getvar "ucsicon")))))
If you have another command executing with the UI keyboard shortcut, change the highlighted text above to something you are comfortable with. ;)

scott.wilcox
2006-12-11, 09:51 PM
I have a line in my adaddoc.lsp to turn it on in all drawings. Seems some users like it off.