<?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: Can Python respond to events? Want to fix data frame rotation issue. in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356059#M27997</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In ArcMap go to Customize &amp;gt; Extensions and make sure your extension is checked on. I need to follow-up on auto-load because I was under the impression that this property would take care of it, but i can reproduce the same where the extension is not automatically being enabled in the extensions dialog.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jul 2012 19:40:27 GMT</pubDate>
    <dc:creator>ChrisFox3</dc:creator>
    <dc:date>2012-07-16T19:40:27Z</dc:date>
    <item>
      <title>Can Python respond to events? Want to fix data frame rotation issue.</title>
      <link>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356056#M27994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have read through some posts and found some Python code to help but it's not quite where I need it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am usind Data Driven Pages (DDP) with two data frames in ArcMap (ArcEditor) 10.1. The layout has two data frames. The first data frame ("Layers") is where parcels are drawn with annotation etc... The seond data frame ("Shadow") sits over "Layers" and shows only the parcel lines from the 'maps' surrounding the active 'map' in grey - with no annotations. Some of the 'maps' have to be rotated to fit properly and that is handled with a field called Rotation in the DDP index layer (DistMap in my case). So, when I move from page to page in the DDP toolbar, then "Layers" data frame rotates properly, but the "Shadow" data frame does not. "Shadow" data frame sets it's extent and scale from the "Layers" data frame - but ArcDesktop is lacking an option to also have the "Shadow" data frame to match the Rotation of the other data frame.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I have found posts on this topic, but not the solution I'm looking for. I want the rotation to happen for the "Shadow" data frame when I move from page to page in the DDP toolbar. Code that I have found/modified so far is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;mxd = arcpy.mapping.MapDocument("CURRENT")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;topDF = arcpy.mapping.ListDataFrames(mxd, "Layer")[0]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;bottomDF = arcpy.mapping.ListDataFrames(mxd, "Shadow")[0]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;for DDP_Page in range(1, (mxd.dataDrivenPages.pageCount)):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;mxd.dataDrivenPages.currentPageID = DDP_Page&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;angle = mxd.dataDrivenPages.pageRow.getValue("MapGrid.Rotation") # Make sure to use the table.field format to work correctly&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;bottomDF.rotation = angle&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;# arcpy.mapping.ExportToPDF(mxd, r"C:\project\Map_20k_B" + str(DDP_Page) + ".pdf") # Add this line to export the data page - rotated for pdf file&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But, the problem here is that the last data driven page pagerow record sets the angle used by the mxd current map document - not the individual data pages in the data driven pages. So, then when you iterate through the data driven pages with the DDP, after running this script, the last angle used on the last DDP page is used for all the pages.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm thus thinking that the way to solve this would be to attach to an event - like a DDP_PageChanged type of event to call the Python code to change the page rotation as the pages are navigated in the DDP toolbar. I also understant that VBA support is going away and I need a solution that will work down the line. Is there a way to do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have been using ArcGIS software for about 5 years now (since 9.2) - so I am pretty familiar with the software - but I don't have much experience coding with VBA or Python for things like this. My main coding in Arc stuff has been using VBA for labeling feature classes. I took a class in ArcObjects for .NET a coupole of years ago - however it was a broken course - mostly taught on VB6 - COM methods instead of .NET and the part covering setup of installers for your tools was covered extremely fast and brushed over - so if I have to create a new tool of do this with .NET verses VBA or Python - that's fine, but will need pretty detailed help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 13:06:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356056#M27994</guid>
      <dc:creator>AndrewMeador</dc:creator>
      <dc:date>2012-07-13T13:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Can Python respond to events? Want to fix data frame rotation issue.</title>
      <link>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356057#M27995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can work with application events with Python now at 10.1 with &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/#/What_is_a_Python_add_in/014p00000025000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;python add-ins&lt;/A&gt;&lt;SPAN&gt;. If I understand correctly you want to be able to move from page to page in ArcMap and have the rotation of a second data frame match that as the first. I was able to do this with a python add-in. If you read through the guide book linked above it will walk you through creating an add-in, but essentially this is what you would do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Create a python add-in with an extension that implements pageIndexExtentChanged&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Add the following code inside the pageIndexExtentChanged function:&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 pageIndexExtentChanged(self, new_id):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd = arcpy.mapping.MapDocument("Current")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df1, df2 = arcpy.mapping.ListDataFrames(mxd)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df2.rotation = df1.rotation&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the code above df1 is my data frame with ddp enabled and df2 is the other data frame I want to have the same rotation.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:40:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356057#M27995</guid>
      <dc:creator>ChrisFox3</dc:creator>
      <dc:date>2021-12-11T16:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can Python respond to events? Want to fix data frame rotation issue.</title>
      <link>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356058#M27996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I followed your suggestions. I ended up with a Python script as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import pythonaddins&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;class MyDDPTools_clsSyncDataFrameRotation(object):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Implementation for DDPTools_addin.clsSyncDataFrameRotation (Extension)"""&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def __init__(self):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # For performance considerations, please remove all unused methods in this class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.enabled = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def pageIndexExtentChanged(self, new_id):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd = arcpy.mapping.MapDocument("Current")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df1, df2 = arcpy.mapping.ListDataFrames(mxd)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df2.rotation = df1.rotation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "pageIndexExtentChanged Event"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Rotation DF1: " + df1.rotation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Rotation DF2: " + df2.rotation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pass&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;class btnPrevPage(object):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Implementation for DDPTools_addin.btnPrevPage (Button)"""&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def __init__(self):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.enabled = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.checked = False&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def onClick(self):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd = arcpy.mapping.MapDocument("CURRENT")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; topDF = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bottomDF = arcpy.mapping.ListDataFrames(mxd, "Shadow")[0]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if mxd.dataDrivenPages.currentPageID &amp;gt; 1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.dataDrivenPages.currentPageID = mxd.dataDrivenPages.currentPageID - 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bottomDF.rotation = topDF.rotation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "btnPrevPage"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Rotation topDF: " + str(round(topDF.rotation,2))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Rotation bottomDF: " + str(round(bottomDF.rotation,2))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pass&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I created a custom toolbar with a custom button (the lower class in the code) that would allow me to click a 'Previous' button and have it to adjust the rotation based on the button_click code. I also used your code and made it an add-in extension responding the the event you mentioned. My button works, but the pageIndexExtentChanged event does not seem to get called. The debug 'prints' in the code shows in the Python command window for my button, but nothing prints when using the Data Driven Pages Toolbar nav buttons to change pages. Maybe a different event I should code to?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there something else wrong that I did not see? I set the extension properties to load on application startup as well. Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 18:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356058#M27996</guid>
      <dc:creator>AndrewMeador</dc:creator>
      <dc:date>2012-07-16T18:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Can Python respond to events? Want to fix data frame rotation issue.</title>
      <link>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356059#M27997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In ArcMap go to Customize &amp;gt; Extensions and make sure your extension is checked on. I need to follow-up on auto-load because I was under the impression that this property would take care of it, but i can reproduce the same where the extension is not automatically being enabled in the extensions dialog.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 19:40:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356059#M27997</guid>
      <dc:creator>ChrisFox3</dc:creator>
      <dc:date>2012-07-16T19:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can Python respond to events? Want to fix data frame rotation issue.</title>
      <link>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356060#M27998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Chris, that did the trick. Customize...Extensions...Checked my custom extension. Now it works fine!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I removed the custom toolbar and button and ended with the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import pythonaddins&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;class MyDDPTools_clsSyncDataFrameRotation(object):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Implementation for DDPTools_addin.clsSyncDataFrameRotation (Extension)"""&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def __init__(self):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # For performance considerations, please remove all unused methods in this class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.enabled = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def pageIndexExtentChanged(self, new_id):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd = arcpy.mapping.MapDocument("Current")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df1, df2 = arcpy.mapping.ListDataFrames(mxd)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df2.rotation = df1.rotation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # print "pageIndexExtentChanged Event"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # print "Rotation DF1: " + str(round(df1.rotation, 2))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # print "Rotation DF2: " + str(round(df2.rotation, 2))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pass&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I appreciate your help - hopefully others can see and use this as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2012 11:21:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/can-python-respond-to-events-want-to-fix-data/m-p/356060#M27998</guid>
      <dc:creator>AndrewMeador</dc:creator>
      <dc:date>2012-07-17T11:21:42Z</dc:date>
    </item>
  </channel>
</rss>

