For AutoSD 11.0 and older
For LT2007 and later:
You will need to upgrade to the latest version of AutoSD
For
LT2006:
Paste
the text below to the end of the following files:
LTBooster:
C:\Program Files\cad-port\LTBooster\LT2006\LTBoosterdoc.lsp
Toolkit Max:
C:\Program Files\drcauto\Toolkit\LT2006\Toolkitdoc.lsp
;******* START LOADING FOR AUTOSD STEEL DETAILING *******
(if (setq file (findfile "C:/Asd_cfg.lsp"))
(load file)
(prompt "\nError: Can not find file C:/Asd_cfg.lsp")
)
(if (setq file (findfile (strcat asd_path "AUTOSD.lsp")))
(load file)
(prompt (strcat "\nError: Can not find file " asd_path "AUTOSD.lsp"))
)
(if (setq file (findfile (strcat asd_path "R2006LT/asd_w16.arx")))
(arxload file)
(prompt (strcat "\nError: Can not find file " asd_path "R2006LT/asd_w16.arx"))
)
;******* END LOADING FOR AUTOSD STEEL DETAILING *******
Copy asd_w16.arx from D:\AutoSD\R2006 of the
AutoSD CD to
C:\AutoSD\R2006LT
-------------------------------------------------------------------------------------
For LT2005:
Paste the text below to the end of the following files:
LTBooster:
C:\Program Files\cad-port\LTBooster\LT2005\LTBoosterdoc.lsp
Toolkit Max:
C:\Program Files\drcauto\Toolkit\LT2005\Toolkitdoc.lsp
;******* START LOADING FOR AUTOSD STEEL DETAILING *******
(if (setq file (findfile "C:/Asd_cfg.lsp"))
(load file)
(prompt "\nError: Can not find file C:/Asd_cfg.lsp")
)
(if (setq file (findfile (strcat asd_path "AUTOSD.lsp")))
(load file)
(prompt (strcat "\nError: Can not find file " asd_path "AUTOSD.lsp"))
)
(if (setq file (findfile (strcat asd_path "R2005LT/asd_w16.arx")))
(arxload file)
(prompt (strcat "\nError: Can not find file " asd_path "R2005LT/asd_w16.arx"))
)
;******* END LOADING FOR AUTOSD STEEL DETAILING *******
Copy asd_w16.arx from D:\AutoSD\R2005 of the
AutoSD CD to
C:\AutoSD\R2005LT
-------------------------------------------------------------------------------------
For
LT2004:
Paste the text below to the end of the following files:
LTBooster:
C:\Program Files\cad-port\LTBooster\LT2004\LTBoosterdoc.lsp
Toolkit Max:
C:\Program Files\drcauto\Toolkit\LT2004\Toolkitdoc.lsp
;******* START LOADING FOR AUTOSD STEEL DETAILING *******
(if (setq file (findfile "C:/Asd_cfg.lsp"))
(load file)
(prompt "\nError: Can not find file C:/Asd_cfg.lsp")
)
(if (setq file (findfile (strcat asd_path "AUTOSD.lsp")))
(load file)
(prompt (strcat "\nError: Can not find file " asd_path "AUTOSD.lsp"))
)
(if (setq file (findfile (strcat asd_path "R2004LT/asd_w16.arx")))
(arxload file)
(prompt (strcat "\nError: Can not find file " asd_path "R2004LT/asd_w16.arx"))
)
;******* END LOADING FOR AUTOSD STEEL DETAILING *******
Copy asd_w16.arx from D:\AutoSD\R2004 of the
AutoSD CD to
C:\AutoSD\R2004LT
-------------------------------------------------------------------------------------
For
LT2002:
Paste the text below to the end of the following files:
C:\Program Files\cad-port\LTBooster\LT2000\LTBoosterdoc.lsp
;******* START LOADING FOR AUTOSD STEEL DETAILING *******
(if (setq file (findfile "C:/Asd_cfg.lsp"))
(load file)
(prompt "\nError: Can not find file C:/Asd_cfg.lsp")
)
(if (setq file (findfile (strcat asd_path "AUTOSD.lsp")))
(load file)
(prompt (strcat "\nError: Can not find file " asd_path "AUTOSD.lsp"))
)
(if (setq file (findfile (strcat asd_path "R2002LT/asd_w15.arx")))
(arxload file)
(prompt (strcat "\nError: Can not find file " asd_path "R2002LT/asd_w15.arx"))
)
;******* END LOADING FOR AUTOSD STEEL DETAILING *******
Copy asd_w15.arx from D:\AutoSD\R2002 of the
AutoSD CD to
C:\AutoSD\R2002LT
-------------------------------------------------------------------------------------
|
For
AutoSD 12.0 and later
Paste the text in
BLACK below to the end of the following file:
For
LT2012 - LT2014:
Cadsta Max:
C:\Program Files\Cadsta\Cadsta Tools\2012\CadstaToolsdoc.lsp
For
LT2011:
Cadsta Max:
C:\Program Files\Cadsta\Cadsta Tools\2011\CadstaToolsdoc.lsp
For
LT2002 -
LT2010 (Change 2002 to your version of AutoCAD)
CADBooster:
C:\Program Files\cad-port\CADBooster\2002\CADBoosterdoc.lsp
Cadsta Max:
C:\Program Files\Cadsta\Cadsta Tools\2002\CadstaToolsdoc.lsp
Toolkit Max:
C:\Program Files\drcauto\Toolkit\LT2002\Toolkitdoc.lsp
;******* START LOADING
FOR AUTOSD STEEL DETAILING *******
(if (not (setq file (findfile "Asd_cfg.lsp"))) (setq file (findfile "C:/Asd_cfg.lsp")))
(if file (progn (load file)
(if (setq file (findfile (strcat asd_path "AUTOSD.lsp"))) (load file)
(alert "File 'autosd.lsp' not found !")))
(alert "File 'Asd_cfg.lsp' not found !"))
(setq file nil)
(cond
((= (atoi (substr (getvar "acadver") 1 2)) 15)
(setq file
"asd_w15.arx"))
((= (atoi (substr (getvar "acadver") 1 2)) 16)
(setq file
"asd_w16.arx"))
((= (atoi (substr (getvar "acadver") 1 2)) 17)
(if (wcmatch (getvar "PLATFORM") "*x86*")
(setq file "asd_w17.arx") (setq file "asd_x17.arx")
)
)
((= (atoi (substr (getvar "acadver") 1 2)) 18)
(if (wcmatch (getvar "PLATFORM") "*x86*")
(setq file "asd_w18.arx") (setq file "asd_x18.arx")
)
)
((= (atoi (substr (getvar "acadver") 1 2)) 19)
(if (wcmatch (getvar "PLATFORM") "*x86*")
(setq file "asd_w19.arx") (setq file "asd_x19.arx")
)
)
)
(if (not (setq ffile (findfile file)))
(alert (strcat "File " file " not found !"))
(if (member file (arx)) nil (arxload ffile))
);******* END LOADING FOR AUTOSD STEEL DETAILING *******
|