<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>中文Flex例子 &#187; FxHScrollBar</title>
	<atom:link href="http://blog.minidx.com/category/flex/fxhscrollbar/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.minidx.com</link>
	<description>中文Adobe Flex例子,Flex实例教程,RIA资源,全文检索技术,算法和数据结构</description>
	<lastBuildDate>Thu, 31 Mar 2011 03:22:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex Gumbo中如何通过baseColor样式设置FxHScrollBar背景颜色的例子</title>
		<link>http://blog.minidx.com/2009/07/27/2779.html</link>
		<comments>http://blog.minidx.com/2009/07/27/2779.html#comments</comments>
		<pubDate>Mon, 27 Jul 2009 14:45:00 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[FxHScrollBar]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[#thumb]]></category>
		<category><![CDATA[#track]]></category>
		<category><![CDATA[baseColor]]></category>
		<category><![CDATA[decrementButton]]></category>
		<category><![CDATA[incrementButton.]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2779</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何通过baseColor样式，设置FxHScrollBar背景颜色。 
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;FxApplication&#160;name=&#34;FxHScrollBar_baseColor_test&#34;
&#160; &#160; &#160; &#160; xmlns=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;ApplicationControlBar&#160;x=&#34;10&#34; y=&#34;10&#34;&#62;
&#160; &#160; &#160; &#160; &#60;Form&#160;styleName=&#34;plain&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;FormItem&#160;label=&#34;baseColor:&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;ColorPicker&#160;id=&#34;colorPicker&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; selectedColor=&#34;#CCCCCC&#34;&#160;/&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;/FormItem&#62;
&#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/07/27/2779.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Gumbo中如何通过minimum, maximum以及value属性设置FxHScrollBar最大最小以及当前值的例子</title>
		<link>http://blog.minidx.com/2009/07/20/2744.html</link>
		<comments>http://blog.minidx.com/2009/07/20/2744.html#comments</comments>
		<pubDate>Mon, 20 Jul 2009 00:09:29 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[FxHScrollBar]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[maximum]]></category>
		<category><![CDATA[minimum]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2744</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何通过minimum, maximum以及value属性，设置FxHScrollBar最大最小以及当前值。 
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;Application&#160;name=&#34;FxHScrollBar_value_test&#34;
&#160; &#160; &#160; &#160; xmlns=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; layout=&#34;vertical&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;middle&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;ApplicationControlBar&#160;dock=&#34;true&#34;&#62;
&#160; &#160; &#160; &#160; &#60;Form&#160;styleName=&#34;plain&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;FormItem&#160;label=&#34;value:&#34; direction=&#34;horizontal&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;FxHSlider&#160;id=&#34;slider&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/07/20/2744.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Gumbo中如何利用step()函数调整FxHScrollBar水平位置的例子</title>
		<link>http://blog.minidx.com/2009/05/25/2509.html</link>
		<comments>http://blog.minidx.com/2009/05/25/2509.html#comments</comments>
		<pubDate>Mon, 25 May 2009 15:36:03 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[FxHScrollBar]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[step()]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2509</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何利用step()函数，调整FxHScrollBar水平位置。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;FxApplication&#160;name=&#34;FxHScrollBar_step_test&#34;
&#160; &#160; &#160; &#160; xmlns=&#34;http://ns.adobe.com/mxml/2009&#34;&#62;
&#160; &#160; &#60;layout&#62;
&#160; &#160; &#160; &#160; &#60;BasicLayout&#160;/&#62;
&#160; &#160; &#60;/layout&#62;
&#160;
&#160; &#160; &#60;VGroup&#160;horizontalCenter=&#34;0&#34; verticalCenter=&#34;0&#34;&#62;
&#160; &#160; &#160; &#160; &#60;FxHScrollBar&#160;id=&#34;hScrollBar&#34; width=&#34;100%&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;Label&#160;text=&#34;value = {hScrollBar.value}&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;HGroup&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;FxButton&#160;id=&#34;stepUpButton&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; label=&#34;step up&#34;
&#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/05/25/2509.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Gumbo中如何通过page()函数水平滚动FxHScrollBar的例子</title>
		<link>http://blog.minidx.com/2009/05/24/2507.html</link>
		<comments>http://blog.minidx.com/2009/05/24/2507.html#comments</comments>
		<pubDate>Sun, 24 May 2009 10:25:08 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[FxHScrollBar]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[page()]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2507</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何通过page()函数，水平滚动FxHScrollBar。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;FxApplication&#160;name=&#34;FxHScrollBar_page_test&#34;
&#160; &#160; &#160; &#160; xmlns=&#34;http://ns.adobe.com/mxml/2009&#34;&#62;
&#160; &#160; &#60;layout&#62;
&#160; &#160; &#160; &#160; &#60;BasicLayout&#160;/&#62;
&#160; &#160; &#60;/layout&#62;
&#160;
&#160; &#160; &#60;VGroup&#160;horizontalCenter=&#34;0&#34; verticalCenter=&#34;0&#34;&#62;
&#160; &#160; &#160; &#160; &#60;FxHScrollBar&#160;id=&#34;hScrollBar&#34; width=&#34;100%&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;Label&#160;text=&#34;value = {hScrollBar.value}&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;HGroup&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;FxButton&#160;id=&#34;pageUpButton&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; label=&#34;page up&#34;
&#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/05/24/2507.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 2/25 queries in 0.256 seconds using disk
Object Caching 356/695 objects using disk

Served from: blog.minidx.com @ 2012-02-10 01:24:20 -->
