Exports a .max file as an .fbx file, grabs a .jpg from a different folder/shared drive folder, prints the name and date to a .json, renames all files to name.extension, and moves all the files to the specified folder (like a shared drive location)
Includes a small UI
running the script:
select scripting in the 3dsmax toolbar > maxscript listener > select python
import sys
sys.path.append(r'path\tool') | e.g sys.path.append(r'c:\users\user\desktop\tool')
press ctrl + enter
import tool.ui
dialog = tool.ui.PyMaxDialog()
dialog.show()
press ctrl + enter