<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Non-Selectable TextArea for Flex 2	</title>
	<atom:link href="https://jessewarden.com/2006/07/non-selectable-textarea-for-flex-2.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2006/07/non-selectable-textarea-for-flex-2.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Tue, 13 Nov 2007 23:30:30 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ben Throop		</title>
		<link>https://jessewarden.com/2006/07/non-selectable-textarea-for-flex-2.html/comment-page-1#comment-25859</link>

		<dc:creator><![CDATA[Ben Throop]]></dc:creator>
		<pubDate>Tue, 13 Nov 2007 23:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1037#comment-25859</guid>

					<description><![CDATA[I thought this worked

&quot;Also, the textArea.editable flag doesnâ€<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />t appear to update well either. Instead, use

textArea.textField.type = TextFieldType.INPUT; // == editable = true
textArea.textField.type = TextFieldType.DYNAMIC; // == editable = false&quot;

But that&#039;s not the case...]]></description>
			<content:encoded><![CDATA[<p>I thought this worked</p>
<p>&#8220;Also, the textArea.editable flag doesnâ€™t appear to update well either. Instead, use</p>
<p>textArea.textField.type = TextFieldType.INPUT; // == editable = true<br />
textArea.textField.type = TextFieldType.DYNAMIC; // == editable = false&#8221;</p>
<p>But that&#8217;s not the case&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ben Throop		</title>
		<link>https://jessewarden.com/2006/07/non-selectable-textarea-for-flex-2.html/comment-page-1#comment-25857</link>

		<dc:creator><![CDATA[Ben Throop]]></dc:creator>
		<pubDate>Tue, 13 Nov 2007 23:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1037#comment-25857</guid>

					<description><![CDATA[Dredging up an old thread here, but I found a workaround for this until TextArea is improved.
You can set properties directly on a TextArea&#039;s textField property, which exposes its UITextField.

So, if you set textArea.textField.selectable = false, that appears to update itself properly.

Also, the textArea.editable flag doesn&#039;t appear to update well either. Instead, use

textArea.textField.type = TextFieldType.INPUT; // == editable = true
textArea.textField.type = TextFieldType.DYNAMIC; // == editable = false

This is all hackery, but like many folks, I&#039;ve burned more than enough days on trying to make TextArea behave. This works as far as I can tell.]]></description>
			<content:encoded><![CDATA[<p>Dredging up an old thread here, but I found a workaround for this until TextArea is improved.<br />
You can set properties directly on a TextArea&#8217;s textField property, which exposes its UITextField.</p>
<p>So, if you set textArea.textField.selectable = false, that appears to update itself properly.</p>
<p>Also, the textArea.editable flag doesn&#8217;t appear to update well either. Instead, use</p>
<p>textArea.textField.type = TextFieldType.INPUT; // == editable = true<br />
textArea.textField.type = TextFieldType.DYNAMIC; // == editable = false</p>
<p>This is all hackery, but like many folks, I&#8217;ve burned more than enough days on trying to make TextArea behave. This works as far as I can tell.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rob Pierce		</title>
		<link>https://jessewarden.com/2006/07/non-selectable-textarea-for-flex-2.html/comment-page-1#comment-3660</link>

		<dc:creator><![CDATA[Rob Pierce]]></dc:creator>
		<pubDate>Mon, 31 Jul 2006 18:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1037#comment-3660</guid>

					<description><![CDATA[Hi Jesse,

 

I have a need for an Independent Consultant who knows Flex well. My client is moving towards Flex 2 as their strategic platform for rich Internet Applications Development.

 

Please give me a call when you get a minute.

Thanks

Rob

 

 

Rob Pierce

Vice President

eXperient

404.812.4617

www.eXperientcorp.com 

 


]]></description>
			<content:encoded><![CDATA[<p>Hi Jesse,</p>
<p>I have a need for an Independent Consultant who knows Flex well. My client is moving towards Flex 2 as their strategic platform for rich Internet Applications Development.</p>
<p>Please give me a call when you get a minute.</p>
<p>Thanks</p>
<p>Rob</p>
<p>Rob Pierce</p>
<p>Vice President</p>
<p>eXperient</p>
<p>404.812.4617</p>
<p><a href="http://www.eXperientcorp.com" rel="nofollow ugc">http://www.eXperientcorp.com</a> </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ShaX		</title>
		<link>https://jessewarden.com/2006/07/non-selectable-textarea-for-flex-2.html/comment-page-1#comment-3659</link>

		<dc:creator><![CDATA[ShaX]]></dc:creator>
		<pubDate>Sat, 29 Jul 2006 03:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1037#comment-3659</guid>

					<description><![CDATA[Hi guys!!  i too faced the same problem. and found this solution. 

&lt;b&gt;TextAreaName.label.selectable = false;&lt;/b&gt;

this seems to work in Flash 8.

Cheers!]]></description>
			<content:encoded><![CDATA[<p>Hi guys!!  i too faced the same problem. and found this solution. </p>
<p><b>TextAreaName.label.selectable = false;</b></p>
<p>this seems to work in Flash 8.</p>
<p>Cheers!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alex Muntean		</title>
		<link>https://jessewarden.com/2006/07/non-selectable-textarea-for-flex-2.html/comment-page-1#comment-3658</link>

		<dc:creator><![CDATA[Alex Muntean]]></dc:creator>
		<pubDate>Thu, 27 Jul 2006 14:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1037#comment-3658</guid>

					<description><![CDATA[Actually is not Jesse&#039;s fault. I also tested and it seems that UITextField.selectable (at least inside TextArea) does &lt;i&gt;not work as advertised&lt;/i&gt;:

From &lt;a href=&quot;http://livedocs.macromedia.com/flex/2/langref/flash/text/TextField.html#selectable&quot; rel=&quot;nofollow&quot;&gt;LiveDocs&lt;/a&gt;:
&#039;If selectable is set to false, the text in the text field does not respond to selection commands from the mouse or keyboard, and the text cannot be copied with the Copy command.&#039;

It seems that even if set to &lt;b&gt;false&lt;/b&gt;, it is still responding to keyboard selection and Copy. So it might be as well a small bug in the framework.]]></description>
			<content:encoded><![CDATA[<p>Actually is not Jesse&#8217;s fault. I also tested and it seems that UITextField.selectable (at least inside TextArea) does <i>not work as advertised</i>:</p>
<p>From <a href="http://livedocs.macromedia.com/flex/2/langref/flash/text/TextField.html#selectable" rel="nofollow">LiveDocs</a>:<br />
&#8216;If selectable is set to false, the text in the text field does not respond to selection commands from the mouse or keyboard, and the text cannot be copied with the Copy command.&#8217;</p>
<p>It seems that even if set to <b>false</b>, it is still responding to keyboard selection and Copy. So it might be as well a small bug in the framework.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
