QUOTE(Fuzin @ 07/26/09, 09:46 AM) [snapback]312410[/snapback]
C:/Documents and Settings/username/My Documents/maya/2008/scripts
well the varies with operating sytsem but it does not really matter where you put it as ling as there's one (only one!) file named userSetup.mel in ANY of your defined script path directories.
To this end it can be a good idea to put:
CODE
{
string $thisFile;
$thisFile = whatIs userSetup;
$thisFile = match ":.*$" $thisFile;
print ("Set up user prefs from"+$thisFile+"\n");
}
As it eases debugging in the event you have 2 files with different priorites as only one will be read! And thisway you will know which one.
Its also possible to fork out in factory scripts if you wish