<?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: Python Addin Tool Results in Crash in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419135#M32914</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have conveyed your request about a patch to the team. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, you don't get any feedback &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; - just bear with it for the time being.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 Jun 2012 17:31:39 GMT</pubDate>
    <dc:creator>NobbirAhmed</dc:creator>
    <dc:date>2012-06-30T17:31:39Z</dc:date>
    <item>
      <title>Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419130#M32909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think the Python addin idea is really good, but there is at least 1 show stopper right now.&amp;nbsp; I made a toolbar with a single tool to test.&amp;nbsp; Everything works fine until exactly 9 clicks with the tool, at which point arcmap crashes.&amp;nbsp; It's always 9 clicks and crash, very repeatable.&amp;nbsp; I'm running XP, SP3, and there's a single shapefile layer in the map, but I've tried it in several mxd's, and it's always the same result.&amp;nbsp; As you can see, the tool doesn't do anything except print the event args to the python window.&amp;nbsp; I'm almost certain the problem is in the onRectangle event, since the crash only occurs if self.shape is set to Rectangle.&amp;nbsp;&amp;nbsp; I can set self.shape to None, and put "print self.down" in the onMouseDownMap def, and it will work all day long.&amp;nbsp; But I need rectangle for the tools I want to build.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Below is the code. Jason or someone, if you can check this, I sure would appreciate it.&amp;nbsp; Python addins hold a lot of promise, and I'd sure like to be able to use them and get away from .NET.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
import arcpy
import pythonaddins

class ToolClass2(object):
&amp;nbsp;&amp;nbsp;&amp;nbsp; """Implementation for ToolTest_addin.tool (Tool)"""
&amp;nbsp;&amp;nbsp;&amp;nbsp; def __init__(self):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.enabled = True
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.shape = "Rectangle" # Can set to "Line", "Circle" or "Rectangle" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #for interactive shape drawing and to activate the 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #onLine/Polygon/Circle event sinks.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.cursor = 3
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.down = None
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; def onMouseDownMap(self, x, y, button, shift):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.down = 'down', x, y, button, shift
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; def onRectangle(self, rectangle_geometry):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extent = rectangle_geometry
&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; s = ', '.join(('onrect', str(extent.XMin), str(extent.YMin), 
&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; str(extent.XMax), str(extent.YMax)))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print self.down
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print s
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.down = None


&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS:&amp;nbsp; Once this is fixed, we need more cursors, too.&amp;nbsp; In .NET we get unlimited cursors (make your own).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2012 16:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419130#M32909</guid>
      <dc:creator>MikeHunter</dc:creator>
      <dc:date>2012-06-23T16:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419131#M32910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry Mike and thanks for pointing out the issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The issue is resolved and will be available in the next service pack (10.1 SP1).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you please elaborate on "we need more cursors" - if possible with some use cases?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2012 19:39:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419131#M32910</guid>
      <dc:creator>NobbirAhmed</dc:creator>
      <dc:date>2012-06-23T19:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419132#M32911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Sorry Mike and thanks for pointing out the issue.&lt;BR /&gt;&lt;BR /&gt;The issue is resolved and will be available in the next service pack (10.1 SP1).&lt;BR /&gt;&lt;BR /&gt;Could you please elaborate on "we need more cursors" - if possible with some use cases?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Well, it's good you guys got it fixed, but until the SP comes out, we're dead in the water here.&amp;nbsp; How about a patch?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As far as cursors go, with .NET, we use .cur files, which are available in a number of places and are easy enough to make yourself.&amp;nbsp; I've got a several of them that I've made over the years for .NET tools, and I was hoping to just transfer them to the Python addins.&amp;nbsp; If we can't get that, then what I need are cursors similar to the hyperlink tool cursor, the identify tool cursor, and several other crosshair type cursors.&amp;nbsp; The Python addin cursors available now are pretty limited.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2012 21:55:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419132#M32911</guid>
      <dc:creator>MikeHunter</dc:creator>
      <dc:date>2012-06-23T21:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419133#M32912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There is a workaround for the crash. Create a tool for one of the geometry types - in there, in OnMouseDownMap create a point its x, y parameters. In OnMouseUpMap create another point. Essentially, you will click a point, hold down the mouse and release it at another location. Your rectangle will be created with these two points as opposite corner. In case of a circle, the first point will be the center and distance between two points will be the radius. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my code for rectangle class:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;class RectangleToolClass(object):

&amp;nbsp;&amp;nbsp;&amp;nbsp; """Implementation for AlternativeGeometries_addin.rect_tool (Tool)"""
&amp;nbsp;&amp;nbsp;&amp;nbsp; def __init__(self):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.enabled = True
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.shape = "NONE" 

&amp;nbsp;&amp;nbsp;&amp;nbsp; def onMouseDownMap(self, x, y, button, shift):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.point1 = arcpy.Point(x, y)

 
&amp;nbsp;&amp;nbsp;&amp;nbsp; def onMouseUpMap(self, x, y, button, shift):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.point2 = arcpy.Point(x, y)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array = arcpy.Array()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(self.point1)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(self.point2.X, self.point1.Y))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(self.point2)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(self.point1.X, self.point2.Y))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(self.point1)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; g = arcpy.Polygon(array)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyFeatures_management(g, r"in_memory\rectangle")
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your onMouseUp method for circle could be:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def onMouseUpMap(self, x, y, button, shift):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.point2 = arcpy.Point(x, y)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pt1 = arcpy.PointGeometry(self.point1)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pt2 = arcpy.PointGeometry(self.point2)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; buff_dist = pt1.distanceTo(pt2)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Buffer_analysis(pt1, r"in_memory\circle", buff_dist)
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The line is simplest &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def onMouseUpMap(self, x, y, button, shift):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.point2 = arcpy.Point(x, y)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array = arcpy.Array()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(self.point1)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(self.point2)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; g = arcpy.Polyline(array)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyFeatures_management(g, r"in_memory\line")
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:57:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419133#M32912</guid>
      <dc:creator>NobbirAhmed</dc:creator>
      <dc:date>2021-12-11T18:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419134#M32913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Nobbir, I thought of that myself, and it's easy enough.&amp;nbsp; But the problem is the user does not get any feedback on the screen that a rectangle is being drawn unless you set shape='Rectangle'.&amp;nbsp; But if you do that, onMouseUpMap does not fire.&amp;nbsp;&amp;nbsp; A patch would be nice.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 13:32:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419134#M32913</guid>
      <dc:creator>MikeHunter</dc:creator>
      <dc:date>2012-06-30T13:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419135#M32914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have conveyed your request about a patch to the team. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, you don't get any feedback &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; - just bear with it for the time being.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 17:31:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419135#M32914</guid>
      <dc:creator>NobbirAhmed</dc:creator>
      <dc:date>2012-06-30T17:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419136#M32915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Nobbir, thanks for all the help.&amp;nbsp; I am very eager to start using Python addins and am sure they are going to be a big benefit. Hopefully, at some point soon, we will be able to use wxPython inside the app process.&amp;nbsp; Again, thanks for your good work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 18:43:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419136#M32915</guid>
      <dc:creator>MikeHunter</dc:creator>
      <dc:date>2012-06-30T18:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419137#M32916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you Mike. Please let us know if you find any other issue with the Python add-ins. You can email me directly at &lt;/SPAN&gt;&lt;A href="mailto:&amp;quot;nahmed@esri.com&amp;quot;" rel="nofollow"&gt;nahmed@esri.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Meanwhile, could you please let us know the workflows or scenarios where you need to use wxPython?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Jul 2012 03:54:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419137#M32916</guid>
      <dc:creator>NobbirAhmed</dc:creator>
      <dc:date>2012-07-01T03:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419138#M32917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Forms like these:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]15634[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Data entry forms, listboxes, buttons, etc to facilitate work flow for non-power users.&amp;nbsp; Also, I use wxPython for simple dialogs, message boxes, Yes/No/Cancel stuff and the like.&amp;nbsp; As you can see, I'm already using wxPython forms with Arcmap, but outside the app process, so I have to constantly cross process boundaries.&amp;nbsp; Inside would be easier and faster.&amp;nbsp; I could do all this with .NET, but I'm more productive with Python.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Jul 2012 12:41:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419138#M32917</guid>
      <dc:creator>MikeHunter</dc:creator>
      <dc:date>2012-07-01T12:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Python Addin Tool Results in Crash</title>
      <link>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419139#M32918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Mark , i have one questión , &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How i can get a feature atributte selected from the map?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thsk to much for your help&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2013 19:26:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-addin-tool-results-in-crash/m-p/419139#M32918</guid>
      <dc:creator>CésarGarrido_Lecca</dc:creator>
      <dc:date>2013-01-09T19:26:25Z</dc:date>
    </item>
  </channel>
</rss>

