PDA

View Full Version : Changing User Profile and Pathing



IXOYE
2011-08-10, 01:02 PM
I wasn’t sure who to send this question to since I am new at this, but am searching for some help.
I want to have all Autocad users at my company to have access to a new toolbar that I have created and applied it to the network at my office and have made a new profile to access it. I was wondering if there is a way to join (2) seperate user profiles (ie. Network profile and User profile) so that they don't have to manually change the personal profile. Also I’m having problems with this Tool Palette recognizing the LISP command buttons, I have set all the paths in my “Options” but when I select the Lisp button I receive a message in the command line – “plf Unknown command “PLF”, Press F1 for help.”

Thanks

rkmcswain
2011-08-10, 02:15 PM
............Also I’m having problems with this Tool Palette recognizing the LISP command buttons, I have set all the paths in my “Options” but when I select the Lisp button I receive a message in the command line – “plf Unknown command “PLF”, Press F1 for help.”


Use this menu macro syntax for launching a lisp routine:

(if (not C:PLF)(load "plf-lisp-file"));plf;

(Where "PLF" is the function name, and "plf-lisp-file" is the name of the file containing the function)