+ Reply to Thread
Results 1 to 10 of 10
  1. #1
    Full Member KnoJa31's Avatar
    Discipline
    Electrical
    KnoJa31's Discipline Details
    Occupation
    Drafter/Administrator
    Discipline
    Electrical
    Using
    AutoCAD 2012
    Join Date
    Sep 2008
    Location
    Everett,WA
    Posts
    64

    Default Tool Palettes Export- Help!!!

    Registered forum members do not see this ad.

    HELP!!!!!!!
    I am on a tight time schedule for these tool palettes that i have created. My lead wants a group of all the tool palettes that i have created for all users to use.
    I have exported all of the palettes to a location on the network. I also exported the group to the same location. I had the user redirect the tool palette path in the Options>Files. The problem that i am running into is that when the users are loading up the tool palettes, they have to import each tool palette seperately then add them to a group.
    Is it possible to have the tool palettes in a location on the network and have each of the users import the group only?

  2. #2
    Luminous Being StykFacE's Avatar
    Computer Details
    StykFacE's Computer Details
    Operating System:
    Windows 7 Ultimate 64bit
    Computer:
    Dell Precision T3500
    Discipline
    Multi-disciplinary
    StykFacE's Discipline Details
    Occupation
    BIM Manager & Design Specialist
    Discipline
    Multi-disciplinary
    Details
    Facilities engineering, involving mechanical piping, mechanical HVAC and electrical engineering.
    Using
    Revit 2013
    Join Date
    Mar 2006
    Location
    Dallas, TX - USA
    Posts
    6,582

    Default

    Quote Originally Posted by KnoJa31 View Post
    HELP!!!!!!!
    I am on a tight time schedule for these tool palettes that i have created. My lead wants a group of all the tool palettes that i have created for all users to use.
    I have exported all of the palettes to a location on the network. I also exported the group to the same location. I had the user redirect the tool palette path in the Options>Files. The problem that i am running into is that when the users are loading up the tool palettes, they have to import each tool palette seperately then add them to a group.
    Is it possible to have the tool palettes in a location on the network and have each of the users import the group only?
    No, you will still have to import each Palette one by one, then import the Group. The Group Export only sustains the organization of the Tool Palettes.
    Tannar Frampton | Facilities Engineering | Revit 2013
    Personal Projects | Fender Squier Stratocaster | Custom Smoker | Concrete Patio

  3. #3
    Full Member KnoJa31's Avatar
    Discipline
    Electrical
    KnoJa31's Discipline Details
    Occupation
    Drafter/Administrator
    Discipline
    Electrical
    Using
    AutoCAD 2012
    Join Date
    Sep 2008
    Location
    Everett,WA
    Posts
    64

    Default

    That was what i was afraid of!!! Ok, thanks!!

  4. #4
    Senior Member jaylo23's Avatar
    Computer Details
    jaylo23's Computer Details
    Operating System:
    Windows XP
    Computer:
    Dell Precision 390
    CPU:
    Dual Core Intel(R) Core(TM) 2 CPU
    RAM:
    3.5 GB
    Graphics:
    ATI Fire GL V5600
    Monitor:
    Dual Viewsonic
    Discipline
    Mechanical
    jaylo23's Discipline Details
    Occupation
    Mechanical Designer
    Discipline
    Mechanical
    Using
    AutoCAD 2010
    Join Date
    Sep 2008
    Location
    Dayton, OH
    Posts
    107

    Default

    I had to do a similar thing with the tool palletes knoja31 and all i did was copy out the tool pallette folder under my autocad support file to the network and had my cad operators replace it on each of there computers autocad support file. Then i did an group export all under the customize tool pallette dialogue box and had them inport this file in each of there customize tool pallette dialogue box which automatically sorts the groups out.

  5. #5
    Senior Member neekcotrack's Avatar
    Using
    MEP 2009
    Join Date
    May 2008
    Location
    Florida
    Posts
    329

    Default

    Quote Originally Posted by jaylo23 View Post
    I had to do a similar thing with the tool palletes knoja31 and all i did was copy out the tool pallette folder under my autocad support file to the network and had my cad operators replace it on each of there computers autocad support file. Then i did an group export all under the customize tool pallette dialogue box and had them inport this file in each of there customize tool pallette dialogue box which automatically sorts the groups out.
    I would do this. It will help i think in the long run. There are .atc files of each tool pallete you make. Put them in a folder called read only because you can right click them and make them read only. Make sure to change your tool palette path to the location of the .atc files on the network.

    As long at then have there seach path to the palletes sourced and organized on there computer. You can just copy and drop new ones everytime there is and update and then will get it if they restart cad if they are already in it.

  6. #6
    Luminous Being alanjt's Avatar
    Using
    Civil 3D 2011
    Join Date
    Apr 2008
    Posts
    6,050

    Default

    copy the toolpalette folder you've created with all atc files on the network, have the below coding loaded on all machines (if you have a company acaddoc file, just place it in there (make sure you change the path to match yours). you don't want to make them read only, how can you update them. just get IT to remove write access to that folder for everyone except you; that way, you, or whomever chosen for toolpalette upkeep, can make alterations and noone else can change them.

    Code:
      (setq    files        (vla-get-files (vla-get-preferences (vlax-get-acad-object)))
    ;    expaths        (vla-get-ToolPalettePath files)
      )
      (setq newpath (strcat
            "G:\\cadd standards\\Toolpalette
            "
          )
        )
      (vla-put-ToolPalettePath files newpath)

  7. #7
    Super Member MarcoW's Avatar
    Computer Details
    MarcoW's Computer Details
    Operating System:
    Microsoft Windows 7 Pro 64-bit
    Computer:
    A black one
    CPU:
    Intel Xeon E5520 Quad Core
    RAM:
    8 GB
    Graphics:
    NVIDIA Quadro FX 580 - 512MB
    Primary Storage:
    300 GB 10000 RPM
    Using
    AutoCAD 2011
    Join Date
    Apr 2009
    Location
    The Netherlands
    Posts
    599

    Default

    Quote Originally Posted by alanjt View Post
    copy the toolpalette folder you've created with all atc files on the network, have the below coding loaded on all machines (if you have a company acaddoc file, just place it in there (make sure you change the path to match yours). you don't want to make them read only, how can you update them. just get IT to remove write access to that folder for everyone except you; that way, you, or whomever chosen for toolpalette upkeep, can make alterations and noone else can change them.

    Code:
      (setq    files        (vla-get-files (vla-get-preferences (vlax-get-acad-object)))
    ;    expaths        (vla-get-ToolPalettePath files)
      )
      (setq newpath (strcat
            "G:\\cadd standards\\Toolpalette
            "
          )
        )
      (vla-put-ToolPalettePath files newpath)
    After searching and not finding what I want to know:

    The system variable "toolpaletepath" is gone in Autocad 2010.
    Am I right?

    I have a routine that changes that path so the toolpalettes will change to.

    Or am I missing something?

    (I know it is an old thread but that is not the point now)

  8. #8
    Super Member MarcoW's Avatar
    Computer Details
    MarcoW's Computer Details
    Operating System:
    Microsoft Windows 7 Pro 64-bit
    Computer:
    A black one
    CPU:
    Intel Xeon E5520 Quad Core
    RAM:
    8 GB
    Graphics:
    NVIDIA Quadro FX 580 - 512MB
    Primary Storage:
    300 GB 10000 RPM
    Using
    AutoCAD 2011
    Join Date
    Apr 2009
    Location
    The Netherlands
    Posts
    599

    Default

    ^#%%@

    ... finally I post it, then I find it.
    This is what I was looking for:

    ^C^C*_toolpalettepath "c:";TP;
    (To change to C: as directory)

  9. #9
    Luminous Being alanjt's Avatar
    Using
    Civil 3D 2011
    Join Date
    Apr 2008
    Posts
    6,050

    Default

    Quote Originally Posted by MarcoW View Post
    ^#%%@

    ... finally I post it, then I find it.
    This is what I was looking for:

    ^C^C*_toolpalettepath "c:";TP;
    (To change to C: as directory)
    The above posted code, while sloppy, will do what you need.
    DropBox | finding the light...
    Seann: ...it went crazy ex-girlfriend on me...
    eric_monceaux...its pretty funny seeing two AutoCAD Gods give each other flak...

  10. #10
    Full Member
    Using
    AutoCAD 2006
    Join Date
    Feb 2011
    Posts
    48

    Default

    Registered forum members do not see this ad.

    Its a good thing the "search" function is working properly....this info is sweet...just what i need!!! thanks guys!!!

Similar Threads

  1. Tool Palettes
    By Jeff Podgorski in forum AutoCAD Beginners' Area
    Replies: 3
    Last Post: 13th Feb 2008, 11:57 pm
  2. Tool Palettes
    By Davina Ware in forum AutoCAD General
    Replies: 7
    Last Post: 20th Sep 2007, 08:51 am
  3. Old Tool Palettes
    By Rhayes in forum AutoCAD Drawing Management & Output
    Replies: 8
    Last Post: 21st Aug 2007, 06:42 pm
  4. Network Tool Palettes
    By Rhayes in forum AutoCAD Drawing Management & Output
    Replies: 3
    Last Post: 10th May 2007, 07:14 pm
  5. How custom tool button images are created for tool palettes
    By Autodesk in forum AutoCAD RSS Feeds
    Replies: 0
    Last Post: 21st Feb 2007, 04:13 am

Bookmarks

Posting Permissions

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