Author Topic: Lost all keyboard shortcuts and linetypes  (Read 1506 times)

0 Members and 1 Guest are viewing this topic.

Bob

  • Guest
Lost all keyboard shortcuts and linetypes
« on: December 12, 2006, 11:09:39 AM »
Help.

I have lost all command aliases. The pgp file is still in Support.

Is there a way to force it back?

Acad2000

Thanks,

Bob
« Last Edit: December 12, 2006, 11:11:39 AM by Bob »

Bob

  • Guest
Re: Lost all keyboard shortcuts and linetypes
« Reply #1 on: December 12, 2006, 11:16:35 AM »
Resolved.

For some reason (unknown to me) the acad\support folder was removed from my support file search path.

Should have spotted that one earlier.

Thanks anyway,

Bob

Arizona

  • Guest
Re: Lost all keyboard shortcuts and linetypes
« Reply #2 on: December 12, 2006, 11:30:40 AM »
For Acad 2000, If your support path resided on a network drive and the network was not available at the time you opened autocad this would wipe out any search paths located on the network.

Birdy

  • Guest
Re: Lost all keyboard shortcuts and linetypes
« Reply #3 on: December 12, 2006, 12:19:45 PM »
On a related note,.....

Our ITwit migrated us to a new server while I was at AU.  When I got back, everyones in a frenzy cause they cant plot, no custom routines, no tool palettes, etc.  I made everyone "repath their support settings to the new network location and call me in the morning."

That did the trick,  but for future refrence is their an easier way to accomplish this with one fell swoop?

The end result is: ITwit looked bad, cause they didnt check with me first.
I looked good, cause I was able to fix everything.

I'd look even better if I could just run some magic routine that would fix everyones pathing issues so they didn't have to.  (I'd like to "pocket" a solution for the next time this happens) :)

Anyone?

TimSpangler

  • Water Moccasin
  • Posts: 2010
  • CAD Naked!!
Re: Lost all keyboard shortcuts and linetypes
« Reply #4 on: December 12, 2006, 01:00:39 PM »
Not unless everbody uses the exact same support paths.  If they do (minus personal stuff) then yes it can be done rather easily.

Give a minute to dig it up and I'll post it here.

BYB
ACA 2015 - Windows 7 Pro
All Comments and Content by TimSpangler, Copyright © 2016

TimSpangler

  • Water Moccasin
  • Posts: 2010
  • CAD Naked!!
Re: Lost all keyboard shortcuts and linetypes
« Reply #5 on: December 12, 2006, 01:10:38 PM »
Code: [Select]
(defun C:RESET_SUPPORT (/ AcadTemp)
(setq AcadTemp
(strcat
;; ADD YOUR PATHS HERE AS QUOTED STRINGS
"C:\\Documents and Settings\\tspangle\\Application Data\\Autodesk\\ADT 2006\\enu\\Support;"
"C:\\Documents and Settings\\tspangle\\Application Data\\Autodesk\\ADT 2006\\enu\\Support\\pats;"
"C:\\ADT_6\\Support;"
"C:\\ADT_6\\Fonts;"
"C:\\ADT_6\\Help;"
"C:\\ADT_6\\Express;"
"C:\\ADT_6\\Support\\Color;"
)
)
(setenv "ACAD" AcadTemp)
(princ)
)


;;; USE THIS TO GET A LIST OF YOUR CURRENT SUPPORT PATHS, USE F2 COPY AND PASTE. THEN QUOTE THE WHOLE THING ( YOU WILL HAVE TO REMOVE (STRCAT  ) OR QUOTE EACH ONE SEPERATLY SO YOU CAN ADD TO IT LATER.
(setq AcadTemp (getenv "ACAD"))

YOU CAN THEN LOAD IT AND RUN IT WHEN NEED :O)


This should do the trick Jim.  If you need anymore help just yell (If you yell loud enough I actually may hear you  :lmao: )
ACA 2015 - Windows 7 Pro
All Comments and Content by TimSpangler, Copyright © 2016

Birdy

  • Guest
Re: Lost all keyboard shortcuts and linetypes
« Reply #6 on: December 12, 2006, 02:36:52 PM »
Thanks Tim.
That'll help BIG for the next time.
We do use the same network support paths for custom stuff.
I'll test it out when I get a chance.  Got kinda busy lately.

TimSpangler

  • Water Moccasin
  • Posts: 2010
  • CAD Naked!!
Re: Lost all keyboard shortcuts and linetypes
« Reply #7 on: December 12, 2006, 02:50:17 PM »
ACA 2015 - Windows 7 Pro
All Comments and Content by TimSpangler, Copyright © 2016