<?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>Doing &#38; Done &#187; example</title>
	<atom:link href="http://doing.liduan.com/tag/example/feed/" rel="self" type="application/rss+xml" />
	<link>http://doing.liduan.com</link>
	<description>Record and Store</description>
	<lastBuildDate>Thu, 11 Feb 2010 11:19:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>php upload file, File input (or “upload”&#8230;</title>
		<link>http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/</link>
		<comments>http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 15:56:30 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/</guid>
		<description><![CDATA[php upload file, File input (or “upload”) in HTML forms, Uploading multiple files, PHP &#8211; File Upload]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quackit.com/php/tutorial/php_upload_file.cfm">php upload file</a>, <a href="http://www.cs.tut.fi/~jkorpela/forms/file.html">File input (or “upload”) in HTML forms</a>, <a href="http://us2.php.net/manual/en/features.file-upload.multiple.php">Uploading multiple files</a>, <a href="http://www.tizag.com/phpT/fileupload.php">PHP &#8211; File Upload</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 good topic about mozilla extension dev&#8230;</title>
		<link>http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/</link>
		<comments>http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 13:06:34 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[firefox extension]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/</guid>
		<description><![CDATA[3 good topic about mozilla extension development. 
Getting started with extension development
Building a Thunderbird extension
How to develop a Firefox extension]]></description>
			<content:encoded><![CDATA[<p>3 good topic about mozilla extension development. </p>
<p><a title='Getting started with extension development' href='http://kb.mozillazine.org/Getting_started_with_extension_development'>Getting started with extension development</a></p>
<p><a title='Building a Thunderbird extension' href='https://developer.mozilla.org/en/Building_a_Thunderbird_extension'>Building a Thunderbird extension</a></p>
<p><a title='How to develop a Firefox extension' href='http://robertnyman.com/2009/01/24/how-to-develop-a-firefox-extension/'>How to develop a Firefox extension</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>format &#8216;12345&#8242; to &#8216;12,345&#8242;  javasc &#8230;</title>
		<link>http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/</link>
		<comments>http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 10:55:16 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/</guid>
		<description><![CDATA[format &#8216;12345&#8242; to &#8216;12,345&#8242;
javascript:
string.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, function(s){return s+","})

ruby:
string.gsub(/(\d)(?=(\d\d\d)+(?!\d))/) { &#124;match&#124; match + ',' }

DecimalFormat class also can be used.]]></description>
			<content:encoded><![CDATA[<p>format &#8216;12345&#8242; to &#8216;12,345&#8242;</p>
<p>javascript:<br />
<code>string.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, function(s){return s+","})<br />
</code></p>
<p>ruby:<br />
<code>string.gsub(/(\d)(?=(\d\d\d)+(?!\d))/) { |match| match + ',' }<br />
</code></p>
<p>DecimalFormat class also can be used.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some sources about silverlight 3D progra &#8230;</title>
		<link>http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/</link>
		<comments>http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/#comments</comments>
		<pubDate>Tue, 19 May 2009 17:33:08 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/</guid>
		<description><![CDATA[some sources about silverlight 3D programming:
Flash 10 vs Silverlight 3: Perspective 3D
Silverlight 3D demo
Silverlight 3 – Perspective 3d Transforms
Getting Silverlight to Go 3D
3D Textured Silverlight and Silverlight 3D Engine
Perspective 3D in Silverlight 3
Flash vs Silverlight: 3D Image Space]]></description>
			<content:encoded><![CDATA[<p>some sources about silverlight 3D programming:</p>
<h2><a title="Permanent Link to Flash 10 vs Silverlight 3: Perspective 3D" rel="bookmark" href="http://www.shinedraw.com/3d-illusion/flash-10-vs-silverlight-3-perspective-3d/">Flash 10 vs Silverlight 3: Perspective 3D</a></h2>
<h2><a title="Silverlight 3D demo " href="http://metalinkltd.com/?p=114" target="_blank">Silverlight 3D demo</a></h2>
<h5 class="posthead pageTitle"><a title="Silverlight 3 – Perspective 3d Transforms " href="http://community.irritatedvowel.com/blogs/pete_browns_blog/archive/2009/03/18/Silverlight-3-_1320_-Perspective-3d-Transforms-_1320_-PlaneProjection.aspx" target="_blank">Silverlight 3 – Perspective 3d Transforms</a></h5>
<h2><a id="viewpost.ascx_TitleUrl" href="http://franksworld.com/blog/archive/2008/07/30/11092.aspx">Getting Silverlight to Go 3D</a></h2>
<h2><a title="Permanent Link: 3D Textured Silverlight and Silverlight 3D Engine" rel="bookmark" href="http://drawlogic.com/2007/07/15/3d-textured-silverlight/">3D Textured Silverlight and Silverlight 3D Engine</a></h2>
<h1 id="ctl00_cphMiddle_cphSubHeader_hdrItem_h1Title" class="title"><a title="Perspective 3D in Silverlight 3" href="http://www.silverlightshow.net/items/Perspective-3D-in-Silverlight-3.aspx" target="_blank">Perspective 3D in Silverlight 3</a></h1>
<h2><a title="Permanent Link to Flash vs Silverlight: 3D Image Space" rel="bookmark" href="http://www.shinedraw.com/3d-illusion/flash-vs-silverlight-3d-image-space/">Flash vs Silverlight: 3D Image Space</a></h2>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using python get friend timeline in twit &#8230;</title>
		<link>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/</link>
		<comments>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/#comments</comments>
		<pubDate>Fri, 01 May 2009 20:53:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/</guid>
		<description><![CDATA[using python get friend timeline in twitter. following tools should be used:
python-twitter
python-simplejson
first install python-simplejson, if in ubuntu, just using command as follows
$apt-get install python-simplejson
then, downloading python-twitter , unpackage it. then using command
  $ python setup.py build
  $ python setup.py install
then, open python.
&#62;&#62;&#62; import twitter
&#62;&#62;&#62; api = twitter.Api(&#8220;username&#8221;, &#8220;passworld&#8221;)
&#62;&#62;&#62; posts = api.GetFriendsTimeline(&#8216;username&#8217;)
&#62;&#62;&#62; print [post.text in post [...]]]></description>
			<content:encoded><![CDATA[<p>using python get friend timeline in twitter. following tools should be used:</p>
<p><a title="python-twitter" href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a></p>
<p>python-simplejson</p>
<p>first install python-simplejson, if in ubuntu, just using command as follows</p>
<p>$apt-get install python-simplejson</p>
<p>then, downloading <a title="python-twitter" href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a> , unpackage it. then using command</p>
<pre><span class="pln">  $ python setup</span><span class="pun">.</span><span class="pln">py build
  $ python setup</span><span class="pun">.</span><span class="pln">py install</span></pre>
<p>then, open python.</p>
<p>&gt;&gt;&gt; import twitter</p>
<p>&gt;&gt;&gt; api = twitter.Api(&#8220;username&#8221;, &#8220;passworld&#8221;)</p>
<p>&gt;&gt;&gt; posts = api.GetFriendsTimeline(&#8216;username&#8217;)</p>
<p>&gt;&gt;&gt; print [post.text in post as posts ];</p>
<p>for the file, the script should be liked:<br />
<code><br />
import twitter<br />
class mytwitter():</p>
<p>def __init__(self):<br />
  self._config = None</p>
<p>def main():<br />
  api = twitter.Api('username', 'passworld')<br />
  posts = api.GetFriendsTimeline('username')<br />
  for post in posts:<br />
    print post.text.encode('utf-8')</p>
<p>if __name__ == "__main__":<br />
  main()<br />
</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a popual ruby on rails, part1 and part2.</title>
		<link>http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/</link>
		<comments>http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 20:53:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/</guid>
		<description><![CDATA[a popual ruby on rails, part1 and part2. there is other tutorial based on rails 2.1. basicly, grammer has some changes between 2.0, 2.1 and 2.2.]]></description>
			<content:encoded><![CDATA[<p>a popual ruby on rails, <a title="a popual ruby on rails" href="http://www.onlamp.com/lpt/a/5546" target="_blank">part1</a> and <a title="a popual ruby on rails" href="http://www.onlamp.com/lpt/a/5641" target="_blank">part2</a>. there is <a title="ruby on rails 2.1 tutorial" href="http://www.tutorialspoint.com/ruby-on-rails-2.1/index.htm" target="_blank">other tutorial based on rails 2.1</a>. basicly, grammer has some changes between 2.0, 2.1 and 2.2.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>very simple CMS system build by php. it  &#8230;</title>
		<link>http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/</link>
		<comments>http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:32:38 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/</guid>
		<description><![CDATA[very simple CMS system build by php. it provides support for mysql database, but not support template.]]></description>
			<content:encoded><![CDATA[<p><a title="very simple CMS system" href="http://css-tricks.com/php-for-beginners-building-your-first-simple-cms/" target="_blank">very simple CMS system</a> build by php. it provides support for mysql database, but not support template.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rewrite mod tutorial with some examples.</title>
		<link>http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/</link>
		<comments>http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 11:45:56 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/</guid>
		<description><![CDATA[rewrite mod tutorial with some examples.]]></description>
			<content:encoded><![CDATA[<p><a href="http://u21.me/21" target="_blank">rewrite mod tutorial with some examples</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using c read each char and covert to lon &#8230;</title>
		<link>http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/</link>
		<comments>http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 17:12:20 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/</guid>
		<description><![CDATA[using c read each char and covert to long int:
while(*buffer != &#8216;\n&#8217;);
{
read(fileName, buffer, 1);
printf(&#8221; Byte: %s&#8221;, buffer);
}
good way.]]></description>
			<content:encoded><![CDATA[<p>using <a href="http://www.experts-exchange.com/Programming/Languages/C/Q_20769218.html">c read each char and covert to long int</a>:</p>
<p>while(*buffer != &#8216;\n&#8217;);<br />
{<br />
read(fileName, buffer, 1);<br />
printf(&#8221; Byte: %s&#8221;, buffer);<br />
}</p>
<p>good way.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>facebook and adobe will partner to build &#8230;</title>
		<link>http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/</link>
		<comments>http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 17:37:08 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/</guid>
		<description><![CDATA[facebook and adobe will partner to build a new development tools. it will have more helpful in the facebook application development. official adobe development website provides a overview for new flash facebook development platform(include video).
currently, adobe official facebook api client is version 3. it is avaliable at google code, include doc and example.]]></description>
			<content:encoded><![CDATA[<p><a title="facebook and adobe will partner to build a new development tools" href="http://www.networkworld.com/news/2009/033109-adobe-facebook-partner-to-create.html" target="_self">facebook and adobe will partner to build a new development tools</a>. it will have more helpful in the facebook application development. official adobe development website provides <a title="a overview for new flash facebook development platform" href="http://www.adobe.com/devnet/facebook/" target="_blank">a overview for new flash facebook development platform</a>(include video).</p>
<p>currently, adobe official facebook api client is version 3. <a title="adobe official facebook api client" href="http://code.google.com/p/facebook-actionscript-api/" target="_blank">it is avaliable at google code</a>, include <a title="adobe official facebook api client document" href="http://facebook-actionscript-api.googlecode.com/svn/release/current/docs/index.html">doc </a>and <a title="adobe official facebook api client program example" href="http://code.google.com/p/facebook-actionscript-api/downloads/list" target="_blank">example</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>degrafa is a graph library based on the  &#8230;</title>
		<link>http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/</link>
		<comments>http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 14:42:35 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[degrafa]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flex 2]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/</guid>
		<description><![CDATA[degrafa is a graph library based on the flex. it is compatible with flex 2 and 3. it also support other graph library, example of papervision3D(3D graph and animation library). there is a example that visual map based on the degrafa, pv3D and yahoo map.]]></description>
			<content:encoded><![CDATA[<p><a title="degrafa" href="http://www.degrafa.org/index.html">degrafa </a>is a graph library based on the flex. it is compatible with flex 2 and 3. it also support other graph library, example of papervision3D(3D graph and animation library). <a href="http://www.pathf.com/blogs/2008/08/papervision3d-20-great-white-in-flex-3-part-ii-iii-combined-with-source-code/">there is a example</a> that visual map based on the degrafa, pv3D and yahoo map.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some effect of the vbox in flex 3.
Clip &#8230;</title>
		<link>http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/</link>
		<comments>http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 14:16:25 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vbox]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/</guid>
		<description><![CDATA[some effect of the vbox in flex 3.
Clipping a Flex container’s content using the clipContent property
Changing a VBox container’s background size in Flex
Changing a VBox container’s background alpha in Flex
Changing a VBox container’s background image attachment in Flex
Setting the vertical gap between items in a Flex VBox container
Setting a Flex container’s vertical scroll policy
Toggling a [...]]]></description>
			<content:encoded><![CDATA[<p>some effect of the vbox in flex 3.</p>
<h3 class="entry-title"><a title="Permanent Link to &quot;Clipping a Flex container's content using the clipContent property&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/02/02/clipping-a-flex-containers-content-using-the-clipcontent-property/">Clipping a Flex container’s content using the clipContent property</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Changing a VBox container's background size in Flex&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/05/changing-a-vbox-containers-background-size-in-flex/">Changing a VBox container’s background size in Flex</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Changing a VBox container's background alpha in Flex&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/05/changing-a-vbox-containers-background-alpha-in-flex/">Changing a VBox container’s background alpha in Flex</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Changing a VBox container's background image attachment in Flex&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/05/changing-a-vbox-containers-background-image-attachment-in-flex/">Changing a VBox container’s background image attachment in Flex</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Setting the vertical gap between items in a Flex VBox container&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/03/setting-the-vertical-gap-between-items-in-a-flex-vbox-container/">Setting the vertical gap between items in a Flex VBox container</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Setting a Flex container's vertical scroll policy&quot;" rel="bookmark" href="http://blog.flexexamples.com/2007/11/09/setting-a-flex-containers-vertical-scroll-policy/">Setting a Flex container’s vertical scroll policy</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Toggling a Flex container's visibility using states&quot;" rel="bookmark" href="http://blog.flexexamples.com/2007/08/24/toggling-a-flex-containers-visibility-using-states/">Toggling a Flex container’s visibility using states</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Toggling a Flex container's visibility&quot;" rel="bookmark" href="http://blog.flexexamples.com/2007/08/23/toggling-a-flex-containers-visibility/">Toggling a Flex container’s visibility</a></h3>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C / ANSI-C examples (example source code &#8230;</title>
		<link>http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/</link>
		<comments>http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 11:47:11 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/</guid>
		<description><![CDATA[C / ANSI-C examples (example source code) Organized by topic]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.java2s.com/Code/C/CatalogC.htm">C / ANSI-C examples</a> (example source code) Organized by topic</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>some sources for developing web server b &#8230;</title>
		<link>http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/</link>
		<comments>http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 14:51:39 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[http server]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/</guid>
		<description><![CDATA[some sources for developing web server by c.
1. a simple httpd called tiny httpd.
2. &#8220;Illustrated Guide to HTTP&#8221; is a book for devemoping web server.]]></description>
			<content:encoded><![CDATA[<p>some sources for <a title="developing web server by c" href="http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c" target="_blank">developing web server by c</a>.</p>
<p>1. a simple httpd called <a title="tiny httpd" href="http://tinyhttpd.sourceforge.net/">tiny httpd</a>.</p>
<p>2. &#8220;<a title="Illustrated Guide to HTTP" href="http://www.manning.com/hethmon/" target="_blank">Illustrated Guide to HTTP</a>&#8221; is a book for devemoping web server.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>somethings can be using in showing stren &#8230;</title>
		<link>http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/</link>
		<comments>http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 13:03:24 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[spring graph]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/</guid>
		<description><![CDATA[somethings can be using in showing strength in the flex spring graph.
1. show different colour for the node of spring graph.
2. show different edge of each node of the spring graph.
3. show different size of nodes in the spring graph.]]></description>
			<content:encoded><![CDATA[<p>somethings can be using in showing strength in the flex spring graph.</p>
<p>1. <a title="show different colour" href="http://www.cs.vu.nl/~eliens/media/@mx-graph-philosopher.html" target="_blank">show different colour</a> for the node of spring graph.</p>
<p>2. <a title="show different edge" href="http://www.12noobs.com/2008/04/18/dynamic-graph-visualization-in-flex-ruby-and-amazon-sqs-part-1-flex/" target="_blank">show different edge</a> of each node of the spring graph.</p>
<p>3. <a title="show different size of nodes" href="http://www.rubenswieringa.com/blog/interactive-mindmap">show different size of nodes</a> in the spring graph.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://doing.liduan.com/2009/03/10/294/</link>
		<comments>http://doing.liduan.com/2009/03/10/294/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 13:52:20 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/10/294/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/JL25MjpEK30&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JL25MjpEK30&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/10/294/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typical Java Commands. using command jav &#8230;</title>
		<link>http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/</link>
		<comments>http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 12:46:52 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/</guid>
		<description><![CDATA[Typical Java Commands. using command java javac and jar to do java development work.]]></description>
			<content:encoded><![CDATA[<p><a title="Typical Java Commands. using command java javac and jar to do java development work." href="http://www.vipan.com/htdocs/javahelp.html" target="_blank">Typical Java Commands</a>. using command java javac and jar to do java development work.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The mx.controls package contains the Fle &#8230;</title>
		<link>http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/</link>
		<comments>http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 12:38:05 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/</guid>
		<description><![CDATA[The mx.controls package contains the Flex user-interface controls, e.g. textinput, label and textarea]]></description>
			<content:encoded><![CDATA[<p>The mx.controls package contains the <a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/package-detail.html" target="_blank">Flex user-interface controls</a>, e.g. textinput, label and textarea</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flex app communicate with java via socke &#8230;</title>
		<link>http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/</link>
		<comments>http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 12:35:11 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[socket server]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/</guid>
		<description><![CDATA[flex app communicate with java via socket server. actionscript/flex program can send socket to a server. that means flex can communicate with other language or program without xml.]]></description>
			<content:encoded><![CDATA[<p><a title="Building a Flash socket server with Java in five minutes" href="http://giantflyingsaucer.com/blog/?p=205" target="_blank">flex app communicate with java via socket server</a>. actionscript/flex program can send socket to a server. that means flex can communicate with other language or program without xml.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some good effect example for hide and sh &#8230;</title>
		<link>http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/</link>
		<comments>http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 14:13:53 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/</guid>
		<description><![CDATA[some good effect example for hide and show panel of flex 3. simple code and tutorial.]]></description>
			<content:encoded><![CDATA[<p><a title="some good effect example for hide and show panel" href="http://blog.flexexamples.com/tag/hideeffect/" target="_blank">some good effect example for hide and show panel</a> of flex 3. simple code and tutorial.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using rdesktop can remote control window &#8230;</title>
		<link>http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/</link>
		<comments>http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 14:55:28 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[rdesktop]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/</guid>
		<description><![CDATA[using rdesktop can remote control windows computer by using unix.example:
$rdesktop -f &#60;ip address&#62;
-f is mean full screen.]]></description>
			<content:encoded><![CDATA[<p>using rdesktop can remote control windows computer by using unix.example:</p>
<p>$rdesktop -f &lt;ip address&gt;</p>
<p>-f is mean full screen.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http://www.adobe.com/devnet/flex/samples &#8230;</title>
		<link>http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/</link>
		<comments>http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 14:35:54 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/</guid>
		<description><![CDATA[http://www.adobe.com/devnet/flex/samples/fig_panzoom/  simple zoom in/out map by flex.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.adobe.com/devnet/flex/samples/fig_panzoom/ " rel="nofollow">http://www.adobe.com/devnet/flex/samples/fig_panzoom/ </a> simple zoom in/out map by flex.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google maps provide api for flash client &#8230;</title>
		<link>http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/</link>
		<comments>http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 19:50:01 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/</guid>
		<description><![CDATA[google maps provide api for flash client. a tutorial for using google maps api by flex sdk.  other one tutorial for installing and using google maps in flex.]]></description>
			<content:encoded><![CDATA[<p><a title="google maps provide api for flash client" href="http://code.google.com/apis/maps/documentation/flash/">google maps provide api for flash client</a>. a tutorial for <a title="http://code.google.com/apis/maps/documentation/flash/" href="http://code.google.com/apis/maps/documentation/flash/tutorial-flex.html" target="_blank">using google maps api by flex sdk</a>.  other one tutorial for <a title="installing and using google maps in flex" href="http://scriptplayground.com/tutorials/as/Installing-and-Using-Google-Maps-in-Flex/">installing and using google maps in flex</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make a visual earth based on the google  &#8230;</title>
		<link>http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/</link>
		<comments>http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 19:43:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[google earth]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/</guid>
		<description><![CDATA[make a visual earth based on the google earth by flex. it only supports ie, firefox and chrome. becouse it require google earth plug-in. resources.]]></description>
			<content:encoded><![CDATA[<p><a title="make a visual earth based on the google earth by flex" href="http://coolestflex.blogspot.com/2008/06/google-earth-with-flex-ie-firefox-on.html" target="_blank">make a visual earth based on the google earth by flex</a>. it only supports ie, firefox and chrome. becouse it require google earth plug-in. <a href="http://cynergysystems.com/blogs/page/andrewtrice?entry=google_eath_flex_source_code" target="_blank">resources</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a simple tutorial for kde4 widget develo &#8230;</title>
		<link>http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/</link>
		<comments>http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 13:54:23 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[kde widget]]></category>
		<category><![CDATA[kde4]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/</guid>
		<description><![CDATA[a simple tutorial for kde4 widget development.]]></description>
			<content:encoded><![CDATA[<p>a <a title="simple tutorial" href="http://techbase.kde.org/Development/Tutorials/Plasma/GettingStarted" target="_blank">simple tutorial</a> for kde4 widget development.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some good tutorial for flex list:
Makin &#8230;</title>
		<link>http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/</link>
		<comments>http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 19:20:20 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/</guid>
		<description><![CDATA[some good tutorial for flex list:
Making a horizontal list with clickable images as members
Flex &#8211; overriding scrollToIndex in HorizontalList to animate scrolling
Setting alternating colors on a Flex HorizontalList control
Creating a simple image gallery with the Flex HorizontalList control
The TileList control displays a number of items laid out in tiles.]]></description>
			<content:encoded><![CDATA[<p>some good tutorial for flex list:</p>
<h2><a href="http://stackoverflow.com/questions/425191/making-a-horizontal-list-with-clickable-images-as-members">Making a horizontal list with clickable images as members</a></h2>
<h1><a href="http://blog.appdivision.com/2009/02/24/flex-overriding-scrolltoindex-in-horizontallist-to-animate-scrolling/">Flex &#8211; overriding scrollToIndex in HorizontalList to animate scrolling</a></h1>
<h3 class="entry-title"><a title="Permanent Link to &quot;Setting alternating colors on a Flex HorizontalList control&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/04/setting-alternating-colors-on-a-flex-horizontallist-control/">Setting alternating colors on a Flex HorizontalList control</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Creating a simple image gallery with the Flex HorizontalList control&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/02/15/creating-a-simple-image-gallery-with-the-flex-horizontallist-control/">Creating a simple image gallery with the Flex HorizontalList control</a></h3>
<p><a title="The TileList control displays a number of items laid out in tiles." href="http://learn.adobe.com/wiki/display/Flex/TileList" target="_blank">The TileList control displays a number of items laid out in tiles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some flex client for online map api is h &#8230;</title>
		<link>http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/</link>
		<comments>http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 19:36:48 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[graphic location]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/</guid>
		<description><![CDATA[some flex client for online map api is helpful for geographic locations application.]]></description>
			<content:encoded><![CDATA[<p><a title="some flex client for online map api" href="http://coolestflex.blogspot.com/2008/06/geocode-with-papervision3d-and-adobe.html" target="_blank">some flex client for online map api</a> is helpful for geographic locations application.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I found this website using very nice 3d  &#8230;</title>
		<link>http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/</link>
		<comments>http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 19:16:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/</guid>
		<description><![CDATA[I found this website using very nice 3d visualization effect. but it can&#8217;t provice the sources. from here.]]></description>
			<content:encoded><![CDATA[<p>I found <a href="http://wk.com/#/search/client/Electronic%20Arts/">this website</a> using very nice 3d visualization effect. but it can&#8217;t provice the sources. <a href="http://www.actionscript.org/forums/showthread.php3?t=191387">from here</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using flex sdk to build a swc file by an &#8230;</title>
		<link>http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/</link>
		<comments>http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 20:12:17 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[swc]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/</guid>
		<description><![CDATA[using flex sdk to build a swc file by ant.]]></description>
			<content:encoded><![CDATA[<p><a title="using flex sdk to build a swc file by ant" href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&amp;productId=2&amp;postId=11309">using flex sdk to build a swc file by ant</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>simple start 3D by papervision3D engine, &#8230;</title>
		<link>http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/</link>
		<comments>http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 14:57:36 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[papervision3D]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/</guid>
		<description><![CDATA[simple start 3D by papervision3D engine, there is a tutorial for it. ]]></description>
			<content:encoded><![CDATA[<p><a title="simple start 3D by papervision3D engine, there is a tutorial for it. " href="http://papervision2.com/tutorial-list/" target="_blank">simple start 3D by papervision3D engine, there is a tutorial for it. </a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
