<?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 How do I auto tab from one text input to the next? in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-do-i-auto-tab-from-one-text-input-to-the-next/m-p/105159#M2406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Please help, I'm a newbie!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using three text boxes as the input to my parcel APN search. I have the three text boxes working with the max characters set to 3. What I would like to do is when the use enters the 3 characters in the bookText text input box automatically move to the blockText input box so that the user does not have to click on the screen to get to the next box. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the code I have dreamed up. I may be completely on the wrong track? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function autoTabText_onChange(event:ChangeWatcher):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; if(bookText.length==3)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; focusManager.setFocus(blockText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 16:01:24 GMT</pubDate>
    <dc:creator>maryandrews</dc:creator>
    <dc:date>2021-12-12T16:01:24Z</dc:date>
    <item>
      <title>How do I auto tab from one text input to the next?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-do-i-auto-tab-from-one-text-input-to-the-next/m-p/105159#M2406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Please help, I'm a newbie!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using three text boxes as the input to my parcel APN search. I have the three text boxes working with the max characters set to 3. What I would like to do is when the use enters the 3 characters in the bookText text input box automatically move to the blockText input box so that the user does not have to click on the screen to get to the next box. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the code I have dreamed up. I may be completely on the wrong track? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function autoTabText_onChange(event:ChangeWatcher):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; if(bookText.length==3)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; focusManager.setFocus(blockText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:01:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-do-i-auto-tab-from-one-text-input-to-the-next/m-p/105159#M2406</guid>
      <dc:creator>maryandrews</dc:creator>
      <dc:date>2021-12-12T16:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I auto tab from one text input to the next?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-do-i-auto-tab-from-one-text-input-to-the-next/m-p/105160#M2407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well I got the error message to go away!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just needed to change this line.&amp;nbsp; Problem is the code doesn't do anything.&amp;nbsp; Hum? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;if(bookText.text.length==3)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jan 2011 16:09:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-do-i-auto-tab-from-one-text-input-to-the-next/m-p/105160#M2407</guid>
      <dc:creator>maryandrews</dc:creator>
      <dc:date>2011-01-14T16:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: How do I auto tab from one text input to the next?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-do-i-auto-tab-from-one-text-input-to-the-next/m-p/105161#M2408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well even though I fell like I'm talking to myself here on this thread I will go ahead and post this since it may help some other newbie!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the code that works!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;protected function bookText_changeHandler(event:TextOperationEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(bookText.text.length==3)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; focusManager.setFocus(blockText);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }

...
&amp;lt;s:TextInput width="56" height="31" x="10" y="68" id="bookText" maxChars="3" change="bookText_changeHandler(event)" /&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:25:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-do-i-auto-tab-from-one-text-input-to-the-next/m-p/105161#M2408</guid>
      <dc:creator>maryandrews</dc:creator>
      <dc:date>2021-12-11T06:25:24Z</dc:date>
    </item>
  </channel>
</rss>

