Here is what I have so far...
import arcpy
import arcpy.mapping as map
mxd = map.MapDocument()
mxd.save()
And yes I know that map.MapDocument requires an argument, but I want it to automatically select the currently open mxd, and overwrite it. If I can't get it to select the currently open mxd I can use:
> import arcpy
>
> import arcpy.mapping as map
>
> mxd = map.MapDocument(C:\GIS\Untitled.mxd)
>
> mxd.save()
But I would still like it to overwrite the mxd with the changes I just made to it in arcmap. Think of it like the save button except scripted. Any help is greatly appreciated.