Do you happen to be dutch?
Just wrote it but I guess it works.Code:; MarcoW 09-11-2009 ; ; first create the function ; and localise the variables used (defun c:asf ( / asfloc oldloc) ; then set some variables that will be used (setq asfloc (getstring T "\nPlease enter the automatic Save File Location as desired: ") oldloc (getvar "savefilepath") ); end of setq ; put the new path into the systemvariable (setvar "savefilepath" asfloc) ; show the old location once more, you might want to write down its location for you never know if you want it back (alert (strcat "The old path was: " oldloc)) ; clean exit (princ) ; end of defun )
Someone might help you along getting the right folder by selecting it in a dialog box.



Reply With Quote


Bookmarks