<?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 script to enter name string in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109445#M8445</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;James,&lt;BR /&gt;&lt;BR /&gt;After much frustration, I was finally able to convert some of my tools to buttons.&amp;nbsp; Back, to the initial part of my search.&amp;nbsp; Can you provide an example string that would ask the user to provide their name?&amp;nbsp; I would like to have the value entered directly into a field in the attribute table.&amp;nbsp; Or at least point in the correct direction with which function to use.&lt;BR /&gt;&lt;BR /&gt;Thanks again.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, if your Add-In successfully launches/opens the correct BCPAO.tbx component...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In your "NameDate" BCPAO.tbx Toolbox, add a new paramter and set it as String.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At the top of this NameDate.py, set a variable to this parameter:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; inputName = arcpy.GetParameter(0) &lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now you can use this variable in an updateCursor on your set of selected features (that's a whole other thread! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jul 2013 18:44:06 GMT</pubDate>
    <dc:creator>JamesCrandall</dc:creator>
    <dc:date>2013-07-23T18:44:06Z</dc:date>
    <item>
      <title>Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109433#M8433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am attempting to write a Python script that selects a record in the attribute table, zooms to the selected feature, and prompts the user to enter their name. The name field already exists in the attribute table as a string type. How would I get the script to prompt the user to enter their name?Then, have the information they enter stored in the attribute table? I am going to have the users run the script from ArcToolbox.&amp;nbsp; I have tried the python addin to toolbar/button.&amp;nbsp; But, was unable to prompt the user to enter their name or zoom to selected feature without manually selecting the feature.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy&amp;nbsp; #Variables Parcels = arcpy.GetParameterAsText(0) arcpy.AddMessage(Parcels)&amp;nbsp; mxd = arcpy.mapping.MapDocument("CURRENT") df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0] lyr = arcpy.mapping.ListLayers(mxd, "Parcels", df)[0] arcpy.AddMessage(lyr.name)&amp;nbsp; #Logic try:&amp;nbsp; whereClause = "RENUM = "+Parcels+""&amp;nbsp; arcpy.SelectLayerByAttribute_management(lyr, "NEW_SELECTION", whereClause)&amp;nbsp;&amp;nbsp; df.extent = lyr.getSelectedExtent()&amp;nbsp; df.scale = df.scale*1.1&amp;nbsp; except:&amp;nbsp; print arcpy.GetMessages()&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 12:26:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109433#M8433</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T12:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109434#M8434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'd have the Python Add-In with a button.&amp;nbsp; Just configure the OnClick event of this add-in to launch your toolbox that has a string input parameter.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

import pythonaddins
class ButtonClass_Button_1(object):
&amp;nbsp;&amp;nbsp;&amp;nbsp; """Implementation for MyAddin_addin.button_1 (Button)"""
&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.checked = False
&amp;nbsp;&amp;nbsp;&amp;nbsp; def onClick(self):&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; pythonaddins.GPToolDialog('C:\MyToolboxFoler\MyCustomToolbox.tbx', 'MyScriptTool') 

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This MyScriptTool you reference would open and present the user the ability to enter in the string parameter.&amp;nbsp; Clicking the Ok button would run the SelectFeatures and zoom to selected code that you'd place in it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:34:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109434#M8434</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-11T06:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109435#M8435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;James,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will try your suggestion and see what happens.&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, 23 Jul 2013 13:02:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109435#M8435</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T13:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109436#M8436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;James,&lt;BR /&gt;&lt;BR /&gt;Logically, this seems like a long way around.&amp;nbsp; Why create a button to call a toolbox?&amp;nbsp; Why not just use the script in the toolbox?&amp;nbsp; I will give it a shot and see if it works though.&amp;nbsp; I am not try to come off as ungrateful or rude.&amp;nbsp; I am new to python and scripting and I am just trying to gain some more knowledge and understanding.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Not rude at all.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The reason is because the toolbox needs to be launched in some manner -- the user can just access the Toolbox in the integrated ArcCatalog tree and I think that is just fine of an option.&amp;nbsp; But the Add-In allows for some user interaction FIRST with the map itself (which is what I thought you needed) --- the problem is that there are no real good options for GUI development with the add-in.&amp;nbsp; So, I just "use" the Toolbox as my User Interface and launch it from the Python Add-in as I suggested.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, what if you want the user to draw a polygon (an add-in tool) on the map that performs a SelectByLocation, then immediately after it finishes it selection, you want a GUI to popup that can present the user to input some information and save that info to the features that were selected by the tool?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't see how you can do this with just a Toolbox.&amp;nbsp; I mean, sure, you could just force the user to make some selections with the default Select Features tool, then just have them manually double-click your toolbox tool.&amp;nbsp; But that is what seems like a long way around!&amp;nbsp; The idea for creating an Add-In is to aggregate your tools into a single, unique toolbar that you can distribute to your users.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that makes sense!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 13:25:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109436#M8436</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2013-07-23T13:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109437#M8437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;James,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I understand your logic.&amp;nbsp; Thanks for taking the time to explain your advice.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am struggling to get the Python addin.py to work.&amp;nbsp; I create a new folder, run the addin_assistant.exe, create a toolbar, create a new button, Save the ArcGIS Python Add-in Wizard, edit the python_addin.py, save the python_addin.py, run the makeaddin.py, run the python.esriaddin, install add-in, installation succeedes, customize add-in manager, customize the new add-in, and turn on new toolbar.&amp;nbsp; The button does not work.&amp;nbsp; So I am guessing that my addin script is not working.&amp;nbsp; So, then I go back, edit the script, delete my esriaddin and reun the final few steps. Sometimes the button displays the image selected and other times not.&amp;nbsp; The code is listed below.&amp;nbsp; All I did was change the toolbox location &amp;amp; name and included the script name.&amp;nbsp; Any ideas why the button is not working? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import pythonaddins

class UpdatesDates_Name(object):
 """Implementation for UpdatesDates_Name.button (Button)"""
 def __init__(self):
&amp;nbsp; self.enabled = True
&amp;nbsp; self.checked = False
 def onClick(self):
&amp;nbsp; pythonaddins.GPToolDialog('E:\User\Python\BCPAO.tbx', 'NameDate.py')&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:34:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109437#M8437</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2021-12-11T06:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109438#M8438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Welcome to the club.&amp;nbsp; I struggled to get the add-in to work as intended (most of my dev work was with ArcObjects/COM components with installers).&amp;nbsp; To test to see if the actual button click event is getting fired, just try to present a message box &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
import arcpy
import pythonaddins

class UpdatesDates_Name(object):
 """Implementation for UpdatesDates_Name.button (Button)"""
 def __init__(self):
&amp;nbsp; self.enabled = True
&amp;nbsp; self.checked = False
 def onClick(self):
&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; msg = "The click event worked!"
&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; pythonaddins.MessageBox(msg, 'Just a test', 0)

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Edit/Addition: if the msg pops up okay, then I'd guess there is an issue with the path to your toolbox or something.&amp;nbsp; Maybe use the UNC path if it is on a network location (that's what we do anyway, because not everyone I distribute will have the same letter'ed mapped drives).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:34:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109438#M8438</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-11T06:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109439#M8439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I double checked the toolbox path and it is fine.&amp;nbsp; I included the latest suggestion, to add the message.&amp;nbsp; Nothing.&amp;nbsp; I have the toolbar name, but no picture or button name.&amp;nbsp; But, if I only edit the script to incude the message and accept all other defaults, it works.&amp;nbsp; ESRI must be having issues with the addin_assistant.exe.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 14:32:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109439#M8439</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T14:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109440#M8440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I double checked the toolbox path and it is fine.&amp;nbsp; I included the latest suggestion, to add the message.&amp;nbsp; Nothing.&amp;nbsp; I have the toolbar name, but no picture or button name.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then there is something wrong with the building/registering the add-in steps.&amp;nbsp; Soooo frustrating!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 14:38:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109440#M8440</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2013-07-23T14:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109441#M8441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was able to add the button picture this time and return the print message.&amp;nbsp; But, the pythonaddins.GPToolDialog still does not run.&amp;nbsp; I believe the .exe fails when you attempt to change ID (Variable Names) for the toolbar/button.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 14:52:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109441#M8441</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T14:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109442#M8442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I got the button to work.&amp;nbsp; But, in setting up the add-in, it seems to only work about 1 out of every 10 attempts.&amp;nbsp; Any one else run into the same or similiar problems with creating python add-ins?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 17:05:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109442#M8442</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T17:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109443#M8443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;James,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I create a toolbar with one button, how can I add more buttons later?&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, 23 Jul 2013 17:27:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109443#M8443</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T17:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109444#M8444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;James,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After much frustration, I was finally able to convert some of my tools to buttons.&amp;nbsp; Back, to the initial part of my search.&amp;nbsp; Can you provide an example string that would ask the user to provide their name?&amp;nbsp; I would like to have the value entered directly into a field in the attribute table.&amp;nbsp; Or at least point in the correct direction with which function to use.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 18:33:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109444#M8444</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T18:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109445#M8445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;James,&lt;BR /&gt;&lt;BR /&gt;After much frustration, I was finally able to convert some of my tools to buttons.&amp;nbsp; Back, to the initial part of my search.&amp;nbsp; Can you provide an example string that would ask the user to provide their name?&amp;nbsp; I would like to have the value entered directly into a field in the attribute table.&amp;nbsp; Or at least point in the correct direction with which function to use.&lt;BR /&gt;&lt;BR /&gt;Thanks again.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, if your Add-In successfully launches/opens the correct BCPAO.tbx component...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In your "NameDate" BCPAO.tbx Toolbox, add a new paramter and set it as String.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At the top of this NameDate.py, set a variable to this parameter:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; inputName = arcpy.GetParameter(0) &lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now you can use this variable in an updateCursor on your set of selected features (that's a whole other thread! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 18:44:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109445#M8445</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2013-07-23T18:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109446#M8446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;James, you are the man. You deserve a nice cold beer.&amp;nbsp; I greatly appreciate all of your guidance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 18:50:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109446#M8446</guid>
      <dc:creator>JacobDrvar</dc:creator>
      <dc:date>2013-07-23T18:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python script to enter name string</title>
      <link>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109447#M8447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;James, you are the man. You deserve a nice cold beer.&amp;nbsp; I greatly appreciate all of your guidance.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BCPAO -- Is that acronym for Broward Co Property Appraiser Office?&amp;nbsp; If so, you can send the beer up to west palm beach just north of ya &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Glad to help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;j&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 19:04:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-to-enter-name-string/m-p/109447#M8447</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2013-07-23T19:04:50Z</dc:date>
    </item>
  </channel>
</rss>

