Solved! Go to Solution.
import arcpy from arcpy import mapping from arcpy import env mxd = mapping.MapDocument("CURRENT") df = mapping.ListDataFrames(mxd)[0] spatialReference = df.spatialReference env.outputCoordinateSystem = spatialReference # Script arguments Point_Selection = arcpy.GetParameterAsText(0) Polygon_Selection = arcpy.GetParameterAsText(1) # Process: Select Layer By Location arcpy.SelectLayerByLocation_management(Polygon_Selection, "INTERSECT", Point_Selection, "", "NEW_SELECTION") arcpy.RefreshActiveView()