<?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"
	>

<channel>
	<title>czBin's RIA Blog</title>
	<atom:link href="http://www.czbin.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.czbin.com</link>
	<description>Flash,Silverlight,JavaScript</description>
	<pubDate>Tue, 06 Jan 2009 10:25:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>可以的话，复写自己类的dispatchEvent()</title>
		<link>http://www.czbin.com/html/2009/override-public-function-dispatchevent.html</link>
		<comments>http://www.czbin.com/html/2009/override-public-function-dispatchevent.html#comments</comments>
		<pubDate>Tue, 06 Jan 2009 07:22:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[dispatchEvent]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=160</guid>
		<description><![CDATA[方法如下：
override public function dispatchEvent(evt:Event):Boolean {
 	if (hasEventListener(evt.type) &#124;&#124; evt.bubbles) {
  		return super.dispatchEvent(evt);
  	}
 	return true;
}
好处吗？当然是性能，hasEventListener可要比dispatchEvent速度快N倍，如果你的项目中有大量的Event要被长时间分发，性能的优势就看出来了 。
]]></description>
			<content:encoded><![CDATA[<p>方法如下：</p>
<pre>override public function dispatchEvent(evt:Event):Boolean {
 	if (hasEventListener(evt.type) || evt.bubbles) {
  		return super.dispatchEvent(evt);
  	}
 	return true;
}</pre>
<p>好处吗？当然是性能，hasEventListener可要比dispatchEvent速度快N倍，如果你的项目中有大量的Event要被长时间分发，性能的优势就看出来了 。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2009/override-public-function-dispatchevent.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google As3 API</title>
		<link>http://www.czbin.com/html/2009/google-as3-api.html</link>
		<comments>http://www.czbin.com/html/2009/google-as3-api.html#comments</comments>
		<pubDate>Tue, 06 Jan 2009 07:12:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Others]]></category>

		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=159</guid>
		<description><![CDATA[Google As3 API ，三方开发的，粉不错。
地址：http://labs.boulevart.be/index.php/2008/12/15/google-as3-api/
This api contains:

Google Web Search
Google Images Search
Google Book Search
Google Video Search (Google Video &#38; YouTube)
Google Blog Search
Google Local Search
Google Patent Search
Google News Search
Google Translation (new)

This API is Flash &#38; Flex compatible.
现在As3的AIP真的是一天可以出现一筐，只是可惜现在的应用开发速度完全跟不上类库的发展。
泡沫经济会引发金融风暴，真不知道这种“泡沫科技”最后会怎么样。
]]></description>
			<content:encoded><![CDATA[<p>Google As3 API ，三方开发的，粉不错。</p>
<p>地址：<a href="http://labs.boulevart.be/index.php/2008/12/15/google-as3-api/">http://labs.boulevart.be/index.php/2008/12/15/google-as3-api/</a></p>
<p class="MsoNormal"><span lang="NL-BE"><span>This</span> api contains:</span></p>
<ul>
<li>Google Web Search</li>
<li>Google Images Search</li>
<li>Google Book Search</li>
<li>Google Video Search (Google Video &amp; YouTube)</li>
<li>Google Blog Search</li>
<li>Google Local Search</li>
<li>Google Patent Search</li>
<li>Google News Search</li>
<li><span style="color: #ff0000;">Google Translation (new)</span></li>
</ul>
<p>This API is Flash &amp; Flex compatible.</p>
<p>现在As3的AIP真的是一天可以出现一筐，只是可惜现在的应用开发速度完全跟不上类库的发展。</p>
<p>泡沫经济会引发金融风暴，真不知道这种“泡沫科技”最后会怎么样。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2009/google-as3-api.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Object.setPropertyIsEnumerable</title>
		<link>http://www.czbin.com/html/2009/object-setpropertyisenumerable.html</link>
		<comments>http://www.czbin.com/html/2009/object-setpropertyisenumerable.html#comments</comments>
		<pubDate>Tue, 06 Jan 2009 06:18:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=158</guid>
		<description><![CDATA[Object是一切之源，要重视，要重视。
几个最基本的属性和方法，其实很多时候都派得上用场，但是我们经常忽略它们。
废话不说，看代码就全明白了。

var object:Object = { propA: "value A",
                      propB: "value B",
                      propC: "value C" [...]]]></description>
			<content:encoded><![CDATA[<p>Object是一切之源，要重视，要重视。</p>
<p>几个最基本的属性和方法，其实很多时候都派得上用场，但是我们经常忽略它们。</p>
<p>废话不说，看代码就全明白了。</p>
<pre>
var object:Object = { propA: "value A",
                      propB: "value B",
                      propC: "value C" };

var isEnumerable:Boolean;
isEnumerable = object.propertyIsEnumerable( "propA" );
// true
isEnumerable = object.propertyIsEnumerable( "propB" );
// true
isEnumerable = object.propertyIsEnumerable( "propC" );
// true

for (var prop:String in object)
{
    trace( prop + " = " + object[prop] );
}
// propA = value A
// propB = value B
// propC = value C
</pre>
<pre>
var object:Object = { propA: "value A",
                      propB: "value B",
                      propC: "value C" };

object.setPropertyIsEnumerable( "propA", false );

var isEnumerable:Boolean;
isEnumerable = object.propertyIsEnumerable( "propA" );
// false
isEnumerable = object.propertyIsEnumerable( "propB" );
// true
isEnumerable = object.propertyIsEnumerable( "propC" );
// true

for ( var prop:String in object )
{
    trace( prop + " = " + object[prop] );
}
// propB = value B
// propC = value C
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2009/object-setpropertyisenumerable.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ribbit - 互联网与电话的融合业务</title>
		<link>http://www.czbin.com/html/2009/ribbit-intro.html</link>
		<comments>http://www.czbin.com/html/2009/ribbit-intro.html#comments</comments>
		<pubDate>Tue, 06 Jan 2009 05:46:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=157</guid>
		<description><![CDATA[不觉得现在科技发展的好快吗？
不觉得现在服务整合的好强吗？
不觉得既然每天办公桌上既然摆了一台电脑，再摆一部电话比较奢侈吗&#8230;
看看下面这个东东吧，虽然它暂时没有什么成功应用。
Ribbit
貌似已经有基于Flash的应用了，不过估计在中国也是没法用，同学们暂且观望好了。
]]></description>
			<content:encoded><![CDATA[<p>不觉得现在科技发展的好快吗？</p>
<p>不觉得现在服务整合的好强吗？</p>
<p>不觉得既然每天办公桌上既然摆了一台电脑，再摆一部电话比较奢侈吗&#8230;</p>
<p>看看下面这个东东吧，虽然它暂时没有什么成功应用。</p>
<p><a href="http://www.ribbit.com/">Ribbit</a></p>
<p>貌似已经有基于Flash的应用了，不过估计在中国也是没法用，同学们暂且观望好了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2009/ribbit-intro.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>JavaScript的Tween&#8230;支持ease&#8230;</title>
		<link>http://www.czbin.com/html/2009/javascript-tween-jstween.html</link>
		<comments>http://www.czbin.com/html/2009/javascript-tween-jstween.html#comments</comments>
		<pubDate>Mon, 05 Jan 2009 02:34:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Tween]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=156</guid>
		<description><![CDATA[http://roading.net/work/jstween/tween.htm
对于Flash来说这效果也许不算什么，但是这样已经很不错了，真希望某天JS也能做动画了，哈哈。
]]></description>
			<content:encoded><![CDATA[<p><a href="http://roading.net/work/jstween/tween.htm">http://roading.net/work/jstween/tween.htm</a></p>
<p>对于Flash来说这效果也许不算什么，但是这样已经很不错了，真希望某天JS也能做动画了，哈哈。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2009/javascript-tween-jstween.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>纪念～2008</title>
		<link>http://www.czbin.com/html/2008/my2008.html</link>
		<comments>http://www.czbin.com/html/2008/my2008.html#comments</comments>
		<pubDate>Wed, 31 Dec 2008 09:41:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=155</guid>
		<description><![CDATA[发生了很多，变化了很多，仅此提笔留念，待某日看到，计议回味。
]]></description>
			<content:encoded><![CDATA[<p>发生了很多，变化了很多，仅此提笔留念，待某日看到，计议回味。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2008/my2008.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Flash与Js交互？不一定要用ExternalInterface</title>
		<link>http://www.czbin.com/html/2008/flash%e4%b8%8ejs%e4%ba%a4%e4%ba%92%ef%bc%9f%e4%b8%8d%e4%b8%80%e5%ae%9a%e8%a6%81%e7%94%a8externalinterface.html</link>
		<comments>http://www.czbin.com/html/2008/flash%e4%b8%8ejs%e4%ba%a4%e4%ba%92%ef%bc%9f%e4%b8%8d%e4%b8%80%e5%ae%9a%e8%a6%81%e7%94%a8externalinterface.html#comments</comments>
		<pubDate>Tue, 30 Dec 2008 05:34:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[ExternalInterface]]></category>

		<category><![CDATA[navigateToURL]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=154</guid>
		<description><![CDATA[navigateToURL(new URLRequest("javascript:alert(123)"),"_self");
什么？你问有什么用？其实没什么用&#8230;
]]></description>
			<content:encoded><![CDATA[<pre>navigateToURL(new URLRequest("javascript:alert(123)"),"_self");</pre>
<p>什么？你问有什么用？其实没什么用&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2008/flash%e4%b8%8ejs%e4%ba%a4%e4%ba%92%ef%bc%9f%e4%b8%8d%e4%b8%80%e5%ae%9a%e8%a6%81%e7%94%a8externalinterface.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Flash右键功能</title>
		<link>http://www.czbin.com/html/2008/flash-rightclick.html</link>
		<comments>http://www.czbin.com/html/2008/flash-rightclick.html#comments</comments>
		<pubDate>Mon, 29 Dec 2008 09:59:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[右键]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=153</guid>
		<description><![CDATA[很兴奋啊～现在Js部分是实现了，期待哪个牛人再把As部分封装&#8230;.瓦咔咔
Example：http://www.uza.lt/rightclick/
Code：http://code.google.com/p/custom-context-menu/
]]></description>
			<content:encoded><![CDATA[<p>很兴奋啊～现在Js部分是实现了，期待哪个牛人再把As部分封装&#8230;.瓦咔咔</p>
<p>Example：<a href="http://www.uza.lt/rightclick/">http://www.uza.lt/rightclick/</a></p>
<p>Code：<a href="http://code.google.com/p/custom-context-menu/">http://code.google.com/p/custom-context-menu/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2008/flash-rightclick.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>本Blog被美国主流媒体报道</title>
		<link>http://www.czbin.com/html/2008/worldsgreatestbusinessmind.html</link>
		<comments>http://www.czbin.com/html/2008/worldsgreatestbusinessmind.html#comments</comments>
		<pubDate>Fri, 26 Dec 2008 03:25:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=152</guid>
		<description><![CDATA[不信？Look：
http://www.worldsgreatestbusinessmind.com/20081223-create.html&#38;WT.mc_id=WGBM%7CCreate
Have Fun~
]]></description>
			<content:encoded><![CDATA[<p>不信？Look：</p>
<p><a href="http://www.worldsgreatestbusinessmind.com/20081223-www-czbin.com-create.html&amp;WT.mc_id=WGBM%7CCreate">http://www.worldsgreatestbusinessmind.com/20081223-create.html&amp;WT.mc_id=WGBM%7CCreate</a></p>
<p>Have Fun~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2008/worldsgreatestbusinessmind.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>总结ApplicationDomain()的作用结果</title>
		<link>http://www.czbin.com/html/2008/applicationdomain-result.html</link>
		<comments>http://www.czbin.com/html/2008/applicationdomain-result.html#comments</comments>
		<pubDate>Thu, 18 Dec 2008 03:36:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[applicationDomain]]></category>

		<guid isPermaLink="false">http://www.czbin.com/?p=150</guid>
		<description><![CDATA[ApplicationDomain应该怎么用，文档都看了800多次了，就是记不住，没办法，天生的记忆力弱，这东西又不经常用。
干脆总结一下写出来，以后如果再忘记，也不用去查文档了。
new ApplicationDomain(ApplicationDomain.currentDomain) = Child可以直接使用Parent的Class，Parent则不可直接调用，必须是私用ApplicationDomain.getDefinition()来调用。
ApplicationDomain.currentDomain  = Child和Parent可以任意使用对方的Class（Class重名会冲突）。
new ApplicationDomain(null) = Child和Parent将使用自己的Class（Class重名不会冲突），如果一方要调用另一方的Class，要使用ApplicationDomain.getDefinition()。推荐用这种，麻烦就麻烦吧，起码可控性高。
 
]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Courier New;">ApplicationDomain应该怎么用，文档都看了800多次了，就是记不住，没办法，天生的记忆力弱，这东西又不经常用。</span></p>
<p><span style="font-family: Courier New;">干脆总结一下写出来，以后如果再忘记，也不用去查文档了。</span></p>
<p><span style="font-family: Courier New;">new ApplicationDomain(ApplicationDomain.currentDomain) = Child可以直接使用Parent的Class，Parent则不可直接调用，必须是私用ApplicationDomain.getDefinition()来调用。</span></p>
<p><span style="font-family: Courier New;">ApplicationDomain.currentDomain</span>  = Child和Parent可以任意使用对方的Class（Class重名会冲突）。</p>
<p><span style="font-family: Courier New;">new ApplicationDomain(null) = Child和Parent将使用自己的Class（Class重名不会冲突），如果一方要调用另一方的Class，要使用ApplicationDomain.getDefinition()。推荐用这种，麻烦就麻烦吧，起码可控性高。</span></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.czbin.com/html/2008/applicationdomain-result.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
