Here is what I have so far...
import arcpyimport arcpy.mapping as mapmxd = 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.
أكثر...
import arcpyimport arcpy.mapping as mapmxd = 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.
أكثر...