<?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: Setting the horizontal scroll position in the HorizontalList control in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sat, 11 Feb 2012 11:51:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anitha</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-9594</link>
		<dc:creator>Anitha</dc:creator>
		<pubDate>Thu, 15 Sep 2011 07:00:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-9594</guid>
		<description>Hi! Thanks for providing that code…its really useful. Waiting for your next post.</description>
		<content:encoded><![CDATA[<p>Hi! Thanks for providing that code…its really useful. Waiting for your next post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-9164</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 26 Apr 2011 21:04:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-9164</guid>
		<description>You just saved my life with this post! Thank you so much!!

Add a tween if you like:

var pos:int =hList.horizontalScrollPosition-1;
var min:int = 0;
var value:int = Math.max(min, pos);

TweenLite.to(hList, 0.5,{horizontalScrollPosition:value});</description>
		<content:encoded><![CDATA[<p>You just saved my life with this post! Thank you so much!!</p>
<p>Add a tween if you like:</p>
<p>var pos:int =hList.horizontalScrollPosition-1;<br />
var min:int = 0;<br />
var value:int = Math.max(min, pos);</p>
<p>TweenLite.to(hList, 0.5,{horizontalScrollPosition:value});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-8779</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Tue, 28 Dec 2010 19:09:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-8779</guid>
		<description>@Payel,

Are you using the code from above, or are you using this in a different project?

Peter</description>
		<content:encoded><![CDATA[<p>@Payel,</p>
<p>Are you using the code from above, or are you using this in a different project?</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Payel</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-8775</link>
		<dc:creator>Payel</dc:creator>
		<pubDate>Tue, 28 Dec 2010 14:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-8775</guid>
		<description>Hi,

I am trying this code with Flex 3, but it is giving error on using the 

&quot;Error: Component declaration are not allowed here&quot;. Can you please help me with this??

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am trying this code with Flex 3, but it is giving error on using the </p>
<p>&#8220;Error: Component declaration are not allowed here&#8221;. Can you please help me with this??</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhishek</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-5664</link>
		<dc:creator>abhishek</dc:creator>
		<pubDate>Thu, 10 Sep 2009 10:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-5664</guid>
		<description>hey frnds,
  could we add some move effect to horizontal list?
abhishekchess1@gmail.com
:)
:)</description>
		<content:encoded><![CDATA[<p>hey frnds,<br />
  could we add some move effect to horizontal list?<br />
<a href="mailto:abhishekchess1@gmail.com">abhishekchess1@gmail.com</a><br />
:)<br />
:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nathan</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-4647</link>
		<dc:creator>nathan</dc:creator>
		<pubDate>Tue, 21 Jul 2009 03:46:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-4647</guid>
		<description>Peter.. One more thing need to know... 

Could you please post any example for &lt;b&gt; Event Dispatch from Itemrenderer &lt;/b&gt; ???

Where the Itemrenderer for any List based control... Please...</description>
		<content:encoded><![CDATA[<p>Peter.. One more thing need to know&#8230; </p>
<p>Could you please post any example for <b> Event Dispatch from Itemrenderer </b> ???</p>
<p>Where the Itemrenderer for any List based control&#8230; Please&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nathan</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-4646</link>
		<dc:creator>nathan</dc:creator>
		<pubDate>Tue, 21 Jul 2009 03:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-4646</guid>
		<description>Hey... Thanks a lot Peter.. It works fine...</description>
		<content:encoded><![CDATA[<p>Hey&#8230; Thanks a lot Peter.. It works fine&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-4633</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Mon, 20 Jul 2009 07:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-4633</guid>
		<description>nathan,

What about something like this:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;mx:Label text=&quot;{hList.selectedItem.lbl}&quot; /&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>nathan,</p>
<p>What about something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Label</span> text=<span style="color: #ff0000;">&quot;{hList.selectedItem.lbl}&quot;</span> <span style="color: #7400FF;">/&gt;</span></span></pre></div></div>

<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nathan</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-4614</link>
		<dc:creator>nathan</dc:creator>
		<pubDate>Sat, 18 Jul 2009 11:34:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-4614</guid>
		<description>Hi Peter,

Thanks a lot for sharing this..
But I need to add the events for the Itemrenderer.
For example, when I click any Item in the HorizontalList,  I have to display the &quot;Name of the particular picture&quot;.
Please tell me .. How to do this ???</description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>Thanks a lot for sharing this..<br />
But I need to add the events for the Itemrenderer.<br />
For example, when I click any Item in the HorizontalList,  I have to display the &#8220;Name of the particular picture&#8221;.<br />
Please tell me .. How to do this ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sean</title>
		<link>http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/comment-page-1/#comment-3010</link>
		<dc:creator>sean</dc:creator>
		<pubDate>Wed, 10 Jun 2009 23:15:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/03/scrolling-the-horizontallist-control-in-flex/#comment-3010</guid>
		<description>Thank you for sharing! it works :)</description>
		<content:encoded><![CDATA[<p>Thank you for sharing! it works :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

