Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Tool palette group empty

civilman1957
Advisor

Tool palette group empty

civilman1957
Advisor
Advisor

Good morning, all...

 

I'm creating a custom tool palette for our civil department, and am having two problems with my palettes.

 

First, I created a path to my custom palette in the files section of Options, so I have both my custom and the OOTB palettes mapped. When I move either one up on the list, the palette in my Civil 3D doesn't revert to that palette. I thought you could toggle between multiple palettes?

 

Second,  I created a group called "Title Blocks" and within that group I had several tabs that held the various sizes of title blocks we use. Since the toggle in files isn't working, whenever I replace the custom palette with the OOTB one to refer back to it, and then switch back to the custom one, all my groups are still there, but they are now empty. The palettes that were in them are there, they just aren't in the group any more.

 

Anyone have some insight to share?

 

Thanks,

Cad Manager/Senior Engineering Technician
Autodesk Certified Professional

Intel(R) Core (TM) i7-7700 CPU
3.60 GHz/24 GB BEAST
Civil 3D 2013/2014/2017/2018/2020
0 Likes
Reply
583 Views
1 Reply
Reply (1)

redtransitconsultants
Collaborator
Collaborator

My answer to the first one is to not use the options menu... I just create a few commands to handle switching the tool palette path.

 

Corporate Tool Palette

(defun C:TPCORPORATE () 
	(command "ToolPalettesClose" "*_toolpalettepath" "C:\\MY\\PATH\\Corp Tool Palette" "ToolPalettes")
	(princ "\n*****Corporate Tool Palettes Loaded*****\n")
	(princ) 
);defun

Personal Tool Palette

(defun C:TPPERSONAL () 
	(command "ToolPalettesClose" "*_toolpalettepath" "C:\\MY\\PATH\\TOOL PALETTES" "ToolPalettes")
	(princ "\n*****Personal Tool Palettes Loaded*****\n")
	(princ)
);defun

Out of The Box Tool Palette

(defun C:TPOOTB () 
	(command "ToolPalettesClose" "*_toolpalettepath" (strcat (getvar "ROAMABLEROOTPREFIX") "Support\\ToolPalette") "ToolPalettes")
	(princ "\n*****Out of the Box Tool Palette Loaded*****\n")
	(princ) 
);defun

Steve Hill,Civil Designer / .NET Developer / AutoCAD and AutoCAD Civil 3D Certified Professional
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature

http://redtransitconsultants.com/
Autodesk Exchange Store
Twitter | LinkedIn | YouTube

0 Likes