Results 1 to 7 of 7

Thread: Tool Palette Organization Dilemma

  1. #1
    AUGI Addict bowlingbrad's Avatar
    Join Date
    2003-11
    Location
    Chicago
    Posts
    1,233
    Login to Give a bone
    0

    Default Tool Palette Organization Dilemma

    Guys,

    Scenario:
    1 Network tool palette read-only
    1 Local tool palette for user

    Using TOOLPALETTEPATH variable works fine....
    (command "*_toolpalettepath" "NETWORK;LOCAL")

    EXCEPT the local tool palette always shows up at the top of the list. I would like it to always show up at the bottom. I've tried switching the order to LOCAL;NETWORK with no luck.

    Any ideas?

  2. #2
    AUGI Addict jpaulsen's Avatar
    Join Date
    2002-04
    Location
    Colorado
    Posts
    2,020
    Login to Give a bone
    0

    Default Re: Tool Palette Organization Dilemma

    Try this:

    Code:
     
    (command "*_ToolPalettePath"(strcat "Z:/Autodesk 2009/JRToolPalette"(chr 59)"U:/Autodesk 2009/ToolPalette"))
    Of course substitute your paths for mine.

  3. #3
    AUGI Addict bowlingbrad's Avatar
    Join Date
    2003-11
    Location
    Chicago
    Posts
    1,233
    Login to Give a bone
    0

    Default Re: Tool Palette Organization Dilemma

    It's not the syntax that is the problem. Everything works fine. It is just that the local tool palette tab is always the first tab. I need it to always be the last.

  4. #4
    AUGI Addict jpaulsen's Avatar
    Join Date
    2002-04
    Location
    Colorado
    Posts
    2,020
    Login to Give a bone
    0

    Default Re: Tool Palette Organization Dilemma

    I don't see why a local drive would behave differently than a network drive. That is why I didn't test it before. However, I just tested a local drive now and it is mapped in the order specified in the command string.
    Code:
     
    (command "*_ToolPalettePath"(strcat "Z:/Autodesk 2009/JRToolPalette"(chr 59)"C:/Users/paulsenj/AppData/Roaming/Autodesk/C3D 2012/enu/support/ToolPalette"))
    Attached Images Attached Images

  5. #5
    AUGI Addict bowlingbrad's Avatar
    Join Date
    2003-11
    Location
    Chicago
    Posts
    1,233
    Login to Give a bone
    0

    Default Re: Tool Palette Organization Dilemma

    Like I've said, the tool palette paths are in the correct order but the tabs are not.
    See the attached image.

    Here is what I have to do to get it to be at the bottom. First, I set the network toolpalette then I go back and reset it to include the user.

    As you can see, I've even tried using the strcat with char 59.

    Code:
    (defun C:GPTP ()
      (command "*_toolpalettepath" "X:\\CAD Support\\AutoCAD2012\\ToolPalette")
      (command "*_toolpalettepath" (strcat "X:\\CAD Support\\AutoCAD2012\\ToolPalette"(chr 59)"C:\\GP Standards\\AutoCAD 2012\\ToolPalette"))
      (princ))
    Attached Images Attached Images

  6. #6
    AUGI Addict jpaulsen's Avatar
    Join Date
    2002-04
    Location
    Colorado
    Posts
    2,020
    Login to Give a bone
    0

    Default Re: Tool Palette Organization Dilemma

    Quote Originally Posted by bowlingbrad View Post
    EXCEPT the local tool palette always shows up at the top of the list.
    I think I understand now. The "list" you referred to in your original post are the tabs on the tool palette. Sorry for the confusion.

    The tabs are originally listed in the order they were created or loaded. It appears you got it to work by loading the network palette then loading the local palette. I'm glad you got it to work.

  7. #7
    AUGI Addict bowlingbrad's Avatar
    Join Date
    2003-11
    Location
    Chicago
    Posts
    1,233
    Login to Give a bone
    0

    Default Re: Tool Palette Organization Dilemma

    Thanks. And yes... My brain-to-keyboard connection isn't always that good.

Similar Threads

  1. Replies: 0
    Last Post: 2011-10-11, 10:00 AM
  2. Replies: 3
    Last Post: 2008-10-09, 02:05 PM
  3. Replies: 0
    Last Post: 2008-08-18, 07:57 PM
  4. Put sub-assemblies into a Tool Palette or the Custom Tool Catalog?
    By justin.d.ehart in forum AutoCAD Civil 3D - Corridors
    Replies: 1
    Last Post: 2007-06-05, 03:52 PM
  5. Tool Palette Organization
    By bskripac in forum AutoCAD General
    Replies: 1
    Last Post: 2005-05-20, 12:47 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •