<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Pythonaddins not working for ArcGIS 10.3.1 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357434#M28219</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan, you are correct: it was not as simple as changing the xml and rebuilding the Addin.&amp;nbsp; Did that and still having problems.&amp;nbsp; Biggest problem is that the Python Addin will absolutely not work now from a shared network Addin folder.&amp;nbsp; Installing the Addin from the local C: drive will get it to work for a while, but it inevitably fails after running a few times, which then requires a restart to clear things out so the tool will begin running again.&amp;nbsp; Same Addin had been running without problem in 10.2 for a couple of years prior to our recent ArcGIS 10.3.1 upgrade.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jun 2015 20:24:32 GMT</pubDate>
    <dc:creator>MarkWarren1</dc:creator>
    <dc:date>2015-06-18T20:24:32Z</dc:date>
    <item>
      <title>Pythonaddins not working for ArcGIS 10.3.1</title>
      <link>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357430#M28215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wrote a python tool using pythonaddins in ArcGIS 10.1. The tool works perfectly on ArcGIS 10.1 and 10.2. But I am unable to run the tool on ArcGIS 10.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my python code snippet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
def onMouseDownMap(self, x, y, button, shift):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #setup workspace location
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.env.workspace = r"" + self.inFile 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #list all rasters
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rasters = arcpy.ListRasters("*", "TIF")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #CSV file
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; csv_file = arcpy.env.workspace + "\output.csv"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define output rows list
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rows = []
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define output layers list
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layers = []
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #loop through all raster files and get cell values
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for raster in rasters:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; result = arcpy.GetCellValue_management(raster, "{} {}".format(x, y), "1").getOutput(0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layers.append("{}".format(raster))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rows.append("{}".format(result))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #open the csv file and append values for each click on the raster map
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with open(csv_file, 'a') as outcsv:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #configure writer to write standard csv file
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer = csv.writer(outcsv, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL, lineterminator='\n')
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #print x, y in csv
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.writerow(['x', 'y'])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #print x, y location in csv
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.writerow([str(x), str(y)])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #print Layer, Value in csv
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.writerow(['Layer', 'Value'])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #get row length
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rowlen = len(rows)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #loop through the rows and print output to csv
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(0, rowlen):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.writerow([layers&lt;I&gt;, rows&lt;I&gt;])&lt;/I&gt;&lt;/I&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is my config.xml file look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;ESRI.Configuration xmlns="&lt;A href="http://schemas.esri.com/Desktop/AddIns" rel="nofollow noopener noreferrer" target="_blank"&gt;http://schemas.esri.com/Desktop/AddIns&lt;/A&gt;" xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instance" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Name&amp;gt;GetRasterCellValue&amp;lt;/Name&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;AddInID&amp;gt;{c509440b-c55e-46bb-b443-a61a2b824da2}&amp;lt;/AddInID&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Description&amp;gt;A python addins tool to get cell value of raster files&amp;lt;/Description&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Version&amp;gt;0.1&amp;lt;/Version&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Image&amp;gt;Images\Other.png&amp;lt;/Image&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Author&amp;gt;Yamin Noor&amp;lt;/Author&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Company&amp;gt;XYZ&amp;lt;/Company&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Date&amp;gt;06/08/2015&amp;lt;/Date&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Targets&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Target name="Desktop" version="10.1" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Targets&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;AddIn language="PYTHON" library="GetRasterCellValue_addin.py" namespace="GetRasterCellValue_addin"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ArcMap&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Commands&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Tool caption="GRCV" category="GetRasterCellValue" class="GRCV" id="GetRasterCellValue_addin.GRCV_1" image="Images\Other.png" message="Get Raster Cell Value" tip="Use this tool to get raster cell value"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Help heading="Get Raster Cell Value"&amp;gt;Get Raster Cell Value&amp;lt;/Help&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Tool&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Commands&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Extensions&amp;gt;&amp;lt;/Extensions&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Toolbars&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Toolbar caption="GRCV" category="GetRasterCellValue" id="GetRasterCellValue_addin.GRCV" showInitially="true"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Items&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Tool refID="GetRasterCellValue_addin.GRCV_1" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Items&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Toolbar&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Toolbars&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Menus&amp;gt;&amp;lt;/Menus&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ArcMap&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/AddIn&amp;gt;
&amp;lt;/ESRI.Configuration&amp;gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure if changing the target version (to 10.3) in config.xml would make any difference. i.e&lt;/P&gt;&lt;P&gt;&amp;lt;Target name="Desktop" version="10.1" /&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Yamin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Yamin Noor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:42:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357430#M28215</guid>
      <dc:creator>YaminNoor</dc:creator>
      <dc:date>2021-12-11T16:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pythonaddins not working for ArcGIS 10.3.1</title>
      <link>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357431#M28216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried changing line 11 in your config.xml to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tag" style="font-weight: bold; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="tag-name" style="font-weight: bold; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699;"&gt;Target&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN class="attribute" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="attribute-value" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue;"&gt;"Desktop"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN class="attribute" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: red;"&gt;version&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="attribute-value" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue;"&gt;"10.3"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN class="tag" style="font-weight: bold; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699;"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;This would reflect the current release that you are on.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the exact problem that you are having with your addin?&amp;nbsp; Is it just not loading or something else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 18:55:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357431#M28216</guid>
      <dc:creator>AlexanderNohe1</dc:creator>
      <dc:date>2015-06-08T18:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pythonaddins not working for ArcGIS 10.3.1</title>
      <link>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357432#M28217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yamin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcGIS 10.2 was backward compatible with 10.1. So, the Add-ins built in 10.1 worked with 10.2, but ArcGIS 10.3 is not backward compatible with 10.1.&lt;/P&gt;&lt;P&gt;Maybe the Python experts can help you get out of it. &lt;/P&gt;&lt;P&gt;cc &lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt;​&lt;A href="https://community.esri.com/migrated-users/3116"&gt;Dan Patterson&lt;/A&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 19:08:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357432#M28217</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2015-06-08T19:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pythonaddins not working for ArcGIS 10.3.1</title>
      <link>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357433#M28218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I doubt it would be as simple as changing the xml.&amp;nbsp; Perhaps the differences are like the transition from ArcView 3.x upward (worst case scenario) or the horrendous well-know location where add-ins are looked for.&amp;nbsp; It can't be python assuming that both use python 2.7.&amp;nbsp; It has to be more difficult than that​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 20:31:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357433#M28218</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-06-08T20:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Pythonaddins not working for ArcGIS 10.3.1</title>
      <link>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357434#M28219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan, you are correct: it was not as simple as changing the xml and rebuilding the Addin.&amp;nbsp; Did that and still having problems.&amp;nbsp; Biggest problem is that the Python Addin will absolutely not work now from a shared network Addin folder.&amp;nbsp; Installing the Addin from the local C: drive will get it to work for a while, but it inevitably fails after running a few times, which then requires a restart to clear things out so the tool will begin running again.&amp;nbsp; Same Addin had been running without problem in 10.2 for a couple of years prior to our recent ArcGIS 10.3.1 upgrade.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 20:24:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357434#M28219</guid>
      <dc:creator>MarkWarren1</dc:creator>
      <dc:date>2015-06-18T20:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pythonaddins not working for ArcGIS 10.3.1</title>
      <link>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357435#M28220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;No its still not working for me on ArcMap 10.3+ but works on ArcMap 10.1 and 10.2. I now have another issue to deal with pythonaddins tool. I developed another separate tool to create rectangle fishnet. It works like charm but after exactly 9 clicks on the map ArcMap crashes to desktop. I have tested this on ArcMap 10.1 and 10.2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yamin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 20:32:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/pythonaddins-not-working-for-arcgis-10-3-1/m-p/357435#M28220</guid>
      <dc:creator>YaminNoor</dc:creator>
      <dc:date>2015-06-18T20:32:43Z</dc:date>
    </item>
  </channel>
</rss>

