<?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: Auto-scrolling a TextArea control in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 14:19:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-8194</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 03 Aug 2010 16:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-8194</guid>
		<description>Ganaraj ,

your method is wonderful!!!!!!</description>
		<content:encoded><![CDATA[<p>Ganaraj ,</p>
<p>your method is wonderful!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sachin</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-6994</link>
		<dc:creator>sachin</dc:creator>
		<pubDate>Fri, 12 Feb 2010 09:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-6994</guid>
		<description>hello sir
    My name is sachin n i am trying to make VBox container which ll store all news came from XML File, and that container should scroll automatically and smoothly also (i tried by timer but its not smoothly) and when user will click on any news heading, that specific news should open in another popup, simultaniasly if user only moves cursor on any news scrolling should stop automatically, n on mouseout then it should resume the scrolling ..  pls help me</description>
		<content:encoded><![CDATA[<p>hello sir<br />
    My name is sachin n i am trying to make VBox container which ll store all news came from XML File, and that container should scroll automatically and smoothly also (i tried by timer but its not smoothly) and when user will click on any news heading, that specific news should open in another popup, simultaniasly if user only moves cursor on any news scrolling should stop automatically, n on mouseout then it should resume the scrolling ..  pls help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sorin</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-6194</link>
		<dc:creator>sorin</dc:creator>
		<pubDate>Mon, 02 Nov 2009 12:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-6194</guid>
		<description>valueCommit=&quot;id.verticalScrollPosition = id.maxVerticalScrollPosition&quot;  tag on the TextArea in mxml works great for me</description>
		<content:encoded><![CDATA[<p>valueCommit=&#8221;id.verticalScrollPosition = id.maxVerticalScrollPosition&#8221;  tag on the TextArea in mxml works great for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganaraj</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-4027</link>
		<dc:creator>Ganaraj</dc:creator>
		<pubDate>Tue, 21 Apr 2009 16:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-4027</guid>
		<description>I found that using Binding is much better than using the timer to continuously check for the scroll position


something like...
&lt;pre class=&quot;code&quot;&gt;
BindingUtils.bindProperty(inputBox,&quot;verticalScrollPosition&quot;,inputBox,&quot;maxVerticalScrollPosition&quot;);
&lt;/pre&gt;

yeah .. thats it. Just one line ..</description>
		<content:encoded><![CDATA[<p>I found that using Binding is much better than using the timer to continuously check for the scroll position</p>
<p>something like&#8230;</p>
<pre class="code">
BindingUtils.bindProperty(inputBox,"verticalScrollPosition",inputBox,"maxVerticalScrollPosition");
</pre>
<p>yeah .. thats it. Just one line ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-4025</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 11 Feb 2009 14:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-4025</guid>
		<description>Thanks for this USEFULL site Peter !!!

Do you have a way to show the first or last position on a text that is larger than a  ?
When the user/an AS script set a text longer than a InputText, the cursor stay on the last position.
In the most case, users want to see the begening of the text, but when I set the cursor position, this does not make the InpuText control to show the beginning of the text.

Thanks</description>
		<content:encoded><![CDATA[<p>Thanks for this USEFULL site Peter !!!</p>
<p>Do you have a way to show the first or last position on a text that is larger than a  ?<br />
When the user/an AS script set a text longer than a InputText, the cursor stay on the last position.<br />
In the most case, users want to see the begening of the text, but when I set the cursor position, this does not make the InpuText control to show the beginning of the text.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-4028</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Sun, 01 Feb 2009 02:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-4028</guid>
		<description>Mandy (not that I expect you&#039;re still awaiting a response),

I posted a solution for auto-scrolling a Flex DataGrid control at &lt;a href=&quot;http://blog.flexexamples.com/2009/01/31/creating-an-auto-scrolling-datagrid-control-in-flex/&quot; rel=&quot;nofollow&quot;&gt;&lt;u&gt;&quot;Creating an auto-scrolling DataGrid control in Flex&quot;&lt;/u&gt;&lt;/a&gt;.

Peter</description>
		<content:encoded><![CDATA[<p>Mandy (not that I expect you&#8217;re still awaiting a response),</p>
<p>I posted a solution for auto-scrolling a Flex DataGrid control at <a href="http://blog.flexexamples.com/2009/01/31/creating-an-auto-scrolling-datagrid-control-in-flex/" rel="nofollow"><u>&#8220;Creating an auto-scrolling DataGrid control in Flex&#8221;</u></a>.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rogelio Lawrence</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-4026</link>
		<dc:creator>Rogelio Lawrence</dc:creator>
		<pubDate>Sat, 31 Jan 2009 20:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-4026</guid>
		<description>Thanks for that Peter - even as a relative beginner, I was able to copy/paste and get it working - and got some brownie points from my boss a a result :)</description>
		<content:encoded><![CDATA[<p>Thanks for that Peter &#8211; even as a relative beginner, I was able to copy/paste and get it working &#8211; and got some brownie points from my boss a a result :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mandy</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-4024</link>
		<dc:creator>Mandy</dc:creator>
		<pubDate>Wed, 21 Jan 2009 07:31:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-4024</guid>
		<description>Do you have a way to auto scroll data grid? Thanks</description>
		<content:encoded><![CDATA[<p>Do you have a way to auto scroll data grid? Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-4023</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Sat, 06 Dec 2008 06:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-4023</guid>
		<description>Michael Richardson,

You&#039;re in luck! Copy and paste the code into Flex Builder and you can see what it does. ;)

Peter</description>
		<content:encoded><![CDATA[<p>Michael Richardson,</p>
<p>You&#8217;re in luck! Copy and paste the code into Flex Builder and you can see what it does. ;)</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Richardson</title>
		<link>http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/comment-page-1/#comment-4022</link>
		<dc:creator>Michael Richardson</dc:creator>
		<pubDate>Sat, 06 Dec 2008 06:28:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/#comment-4022</guid>
		<description>Could you show some examples? I&#039;d like to see what it is that you&#039;re actually producing.</description>
		<content:encoded><![CDATA[<p>Could you show some examples? I&#8217;d like to see what it is that you&#8217;re actually producing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

