Community
Civil 3D Customization
Welcome to Autodesk’s AutoCAD Civil 3D Forums. Share your knowledge, ask questions, and explore popular AutoCAD Civil 3D Customization topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

“Customization” turn on off items like Coordinates, Transparency with lisp file.

2 REPLIES 2
Reply
Message 1 of 3
sheridangis
469 Views, 2 Replies

“Customization” turn on off items like Coordinates, Transparency with lisp file.

In the lower right corner of Civil 3D is a three bar icon that is for “Customization”

 

When open you can turn on/off the display of items like Coordinates, Units, Transparency.

 

Is there a way to turn these on/off in a lisp file?

 

I am aware of 

setvar "COORDS" 1

 

This however does not turn on the display of the coordinates at the bottom just sets the value displayed or not.

 

2 REPLIES 2
Message 2 of 3
tmachado
in reply to: sheridangis

Hi,

I don't know how to do this using a lisp, but you can set this up under the Registry Editor:

HKEY_CURRENT_USER\SOFTWARE\Autodesk\AutoCAD\R21.0\ACAD-0000:409\Profiles\<<C3D_Imperial>>\StatusBar\Application

Registry Editor.png

All of them need to be set as 1 in order for them to show on the Status Bar.

Hope that helps

 


Hope this will help!

Was this answer helpful? If so, please click the ACCEPT AS SOLUTION or the LIKES button

Tatiana Machado
BIM Manager/ Autodesk Certified Instructor
Blog | Twitter | LinkedIn
InfraWorks Ambassador

Message 3 of 3
TomBeauford
in reply to: tmachado

Toggling the values off/on didn't seem to have any effect on the StatusBar Coordinate display.

(vl-load-com)
(defun CoorToggle ( / key )
	(setq key (strcat "HKEY_CURRENT_USER\\" (vlax-user-product-key) "\\Profiles\\" (getvar "cprofile") "\\StatusBar\\Application"))
	(if (= (vl-registry-read key "CursorCoordinatesPane") 1)
		(vl-registry-write key "CursorCoordinatesPane" 0)
		(vl-registry-write key "CursorCoordinatesPane" 1)
	)
)

There may be no lisp solution.

64bit AutoCAD Map & Civil 3D 2023
Architecture Engineering & Construction Collection
2023
Windows 10 Dell i7-12850HX 2.1 Ghz 12GB NVIDIA RTX A3000 12GB Graphics Adapter

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Rail Community


 

Autodesk Design & Make Report