Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: What's the best way to share tool palettes?

  1. #11
    I could stop if I wanted to
    Join Date
    2006-03
    Location
    San Cristobal, Guatemal
    Posts
    439
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Quote Originally Posted by Pierre P View Post
    Also, I've 'reorganized' according to Sfuller's explanation here:
    http://forums.autodesk.com/t5/Visual...t/true#M293391
    I have attempted this but am unable to share. Has or can someone put together a step-by-step procedure for doing this? After I create all of the blocks and place them into their respective named folders and have dragged the blocks to their respective tool palette on my system (They are in both windows (Palettes and Palette Groups) of the Customize Dialog Box) what do I have to do to allow my collegues access to use the tool palettes? Do I export only what the tool palette Customize box offers in the palettes' window (Image folder and .xtp file) or do I have to place the actual block .dwg file in the central location or both? What am I missing besides someones' hand to guide me every step of the way? Please advise, Thank you!
    Last edited by Opie; 2012-11-21 at 03:30 PM. Reason: fixed quote tag -Opie

  2. #12
    I could stop if I wanted to
    Join Date
    2015-10
    Location
    Colorado Springs, CO
    Posts
    369
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    On our server I have a folder called "ACAD Program Files". Within that folder are many other folders with specific jobs. Only myself and the system admin have write access to this folder, others can only read. The permissions are set through windows user profiles. Similar to the link you quoted, I author tool palletes and revisions directly to my tool pallete folder on the server, and everyone else has their tool pallete location directed to this folder. I keep all files that are needed for the office on the server. Blocks, lisps, .pc3 and .ctb files, fonts, etc... This ensures that everyone has access to the same information all the time, but only I have write permission to this "company" information.

  3. #13
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,719
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Quote Originally Posted by Coloradomrg View Post
    On our server I have a folder called "ACAD Program Files". Within that folder are many other folders with specific jobs. Only myself and the system admin have write access to this folder, others can only read. The permissions are set through windows user profiles. Similar to the link you quoted, I author tool palletes and revisions directly to my tool pallete folder on the server, and everyone else has their tool pallete location directed to this folder. I keep all files that are needed for the office on the server. Blocks, lisps, .pc3 and .ctb files, fonts, etc... This ensures that everyone has access to the same information all the time, but only I have write permission to this "company" information.
    I do something similar, but go a step further by also incorporating user-customizations located on user's personal network space which is linked to their Windows profile.

    Even our CUI setup incorporates these user-level customizations (i.e., workspaces, etc.), so that when someone hops into a meeting in the conference room, and logs into the laptop, all of their personal settings, and customizations are made available, regardless of location (or even which office they're in).

    To keep the user's LISP customizations simple, we just:

    Code:
    ((lambda (user / file)
       (if (setq file (findfile (strcat user ".lsp")))
         (load file)
       )
     )
      (getvar 'loginname)
    )
    Some additional goodies are included for laptop users like myself for Offline Files, etc..
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

  4. #14
    I could stop if I wanted to
    Join Date
    2015-10
    Location
    Colorado Springs, CO
    Posts
    369
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    I have user custom CUI's set up also... and this is where my limited knowledge shows up. When I push out a new profile, I just go to each machine and update the path for their "main" cui. I've only got 3 other users right now, so it's not time consuming at all. Our workstations are static, and no laptops so even though the automatic pathing would be nice, it's not required for our workflow.

    Would you mind elaborating a little more on how exactly this works? I hope that eventually the economy comes back up and we'll have more users again...

    If I'm understanding correctly:
    1. get log-in name at start of autocad
    2. check and compare log-in to path, if already correct - end. If different, then #3.
    3. run lisp associated with log-in name to setup (lisp sets .cui paths)

    Is there a separate lisp for each user? We have an ACAD User folder for each user on the server where their CUI is located, so pathing shouldn't be an issue, but each has a different name. Would it make more sense to use a standard name?

  5. #15
    I could stop if I wanted to CEHill's Avatar
    Join Date
    2006-05
    Location
    TN
    Posts
    327
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Helllo Paul Munford,

    I cannot get your link to work. Can you procvide an alternate link to the PDF of the article?

  6. #16
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,719
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Quote Originally Posted by Coloradomrg View Post
    Would you mind elaborating a little more on how exactly this works? I hope that eventually the economy comes back up and we'll have more users again...

    If I'm understanding correctly:
    1. get log-in name at start of autocad
    2. check and compare log-in to path, if already correct - end. If different, then #3.
    3. run lisp associated with log-in name to setup (lisp sets .cui paths)

    Is there a separate lisp for each user? We have an ACAD User folder for each user on the server where their CUI is located, so pathing shouldn't be an issue, but each has a different name. Would it make more sense to use a standard name?
    The LISP code snippet I posted above, can be pasted into your AcadDoc.lsp file.

    What it does, is search for a user-defined LISP file, as an example, named "renderman.lsp", where "renderman" is the value of (getvar 'loginname).

    This allows for that one small code snippet to be used in our deployment(s), and handle any number of users (small or large). I run this toward the top of our AcadDoc.lsp, so as to always ensure that user customizations are loaded prior to internal customizations, so that any enforcement issues can be resolved without issue.

    Hope that makes (more?) sense to you.
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

  7. #17
    Certified AUGI Addict jaberwok's Avatar
    Join Date
    2000-12
    Location
    0,0,0 The Origin
    Posts
    8,570
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Quote Originally Posted by Clinton.Hill View Post
    Helllo Paul Munford,

    I cannot get your link to work. Can you procvide an alternate link to the PDF of the article?
    The link works for me (for reference - 4.5 hours after your post).

  8. #18
    100 Club
    Join Date
    2006-08
    Location
    London
    Posts
    177
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Thanks John - It works for me too...

  9. #19
    I could stop if I wanted to
    Join Date
    2015-10
    Location
    Colorado Springs, CO
    Posts
    369
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Quote Originally Posted by RenderMan View Post
    Hope that makes (more?) sense to you.
    I think I got it Thanks!

  10. #20
    Super Moderator dkoch's Avatar
    Join Date
    2003-03
    Location
    Philadelphia, PA
    Posts
    2,392
    Login to Give a bone
    0

    Default Re: What's the best way to share tool palettes?

    Quote Originally Posted by Pierre P View Post
    ACA 2012
    What's the best way to share tool palettes within an office?

    I do it through profiles: I Created an 'office' profile (.arg) that I eventually share with every employee in the office. Whenever I add things to the tool palettes, I simply create a new profile for every user.
    However, lately not every palette gets transferred. I've done a major reorganisation of the office tool palette and only a very small amount of palettes actually get transferred.

    What am I doing wrong?
    You mention that you are using AutoCAD Architecture, which has a more robust implementation of tool palettes and tools than vanilla AutoCAD does. We have our office standard tool palettes and tools defined in a series of office tool catalogs (each discipline maintains its own) on our network, and users can i-drop them into their own workspace. We do not force any specific tool palette groups, but I use (my own) groups to separate my own tools from the office standard tools (and to separate those of different disciplines, since I have them all loaded locally).

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. CP223-1: Trick Up Your Tool Palettes: How to Make Your Tool Palettes Do Even More!
    By Autodesk University in forum Customization and Programming
    Replies: 0
    Last Post: 2015-08-07, 05:17 PM
  2. How custom tool button images are created for tool palettes
    By Mike.Perry in forum AutoCAD Tips & Tricks
    Replies: 6
    Last Post: 2012-10-09, 02:44 PM
  3. Easiest way to share a tool bar???
    By cmason in forum AutoCAD CUI Menus
    Replies: 10
    Last Post: 2008-05-30, 04:26 PM
  4. Replies: 2
    Last Post: 2006-10-25, 07:29 PM
  5. Create and share multiple Tool Palettes in AutoCAD 2005
    By caduzer in forum AutoCAD Customization
    Replies: 2
    Last Post: 2004-12-08, 07:46 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
  •