<?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>ActionScript 3 Lover &#187; flash</title>
	<atom:link href="http://as3blog.com/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://as3blog.com</link>
	<description>Focus on ActionScript 3</description>
	<lastBuildDate>Thu, 19 Nov 2009 04:51:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>我认为一个优秀的ActionScript程序员应该具备的特殊技能</title>
		<link>http://as3blog.com/as3/extra-as3-coder-skills/</link>
		<comments>http://as3blog.com/as3/extra-as3-coder-skills/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:01:21 +0000</pubDate>
		<dc:creator>Aw</dc:creator>
				<category><![CDATA[ActionScript3]]></category>
		<category><![CDATA[actionscript3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jsfl]]></category>

		<guid isPermaLink="false">http://as3blog.com/as3/extra-as3-coder-skills/</guid>
		<description><![CDATA[除了一些基本的OOP思想之外，我认为一个优秀的ActionScript程序员还应该具备：

JSFL的编写能力 &#8211; 如果要你把300个类元件绑定好相应类文件输出，你难道会一个一个去改Linkage？ 
正则表达式的运用 &#8211; 无论是查代码还是实现功能，正则太重要！ 
支持宏的文本编辑器的使用 &#8211; ActionScript代码的整齐性非常好，这给宏提供了极大的用武之地 
熟练使用Flash Authoring Tool &#8211; 有些事情用Shape画不如用Flash画。 
知道Refactor &#8211; 命名规范不行的开发者更要善用Refactor 
知道Reference &#8211; 知道你的类或者对象都在哪
SVN &#8211; 一个人做项目用SVN也是有必要的。
较好与人沟通的能力 &#8211; AS3和AS1、2不同，讲究合作和谐，而不是单兵作战。

]]></description>
			<content:encoded><![CDATA[<p>除了一些基本的OOP思想之外，我认为一个优秀的ActionScript程序员还应该具备：</p>
<ol>
<li><a title="JSFL" href="http://www.awflasher.com/blog/tag/jsfl" target="_blank">JSFL</a>的编写能力 &#8211; 如果要你把300个类元件绑定好相应类文件输出，你难道会一个一个去改Linkage？ </li>
<li><a title="正则表达式" href="http://www.awflasher.com/blog/archives/1244" target="_blank">正则表达式</a>的运用 &#8211; 无论是查代码还是实现功能，正则太重要！ </li>
<li>支持宏的文本编辑器的使用 &#8211; ActionScript代码的整齐性非常好，这给宏提供了极大的用武之地 </li>
<li>熟练使用Flash Authoring Tool &#8211; 有些事情用Shape画不如用Flash画。 </li>
<li>知道Refactor &#8211; 命名规范不行的开发者更要善用Refactor </li>
<li>知道Reference &#8211; 知道你的类或者对象都在哪</li>
<li>SVN &#8211; 一个人做项目用SVN也是有必要的。</li>
<li>较好与人沟通的能力 &#8211; AS3和AS1、2不同，讲究合作和谐，而不是单兵作战。</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://as3blog.com/as3/extra-as3-coder-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何优雅地嵌入SWF视频文件</title>
		<link>http://as3blog.com/resources/build-graceful-embedding-code-for-video/</link>
		<comments>http://as3blog.com/resources/build-graceful-embedding-code-for-video/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 07:04:46 +0000</pubDate>
		<dc:creator>Aw</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://as3blog.com/uncategorized/build-graceful-embedding-code-for-video/</guid>
		<description><![CDATA[在Automattic的项目合作中，收到Raanan的推荐，来自这里的一份有趣提示。

抉择embed与object标签。object虽然是W3C的标准标签之一，但embed的兼容性更好；
最好能提基于供流式布局的SWF，技术方面可参考这篇文章（虽然是AS2的例子，但大体思想可见）。
提供autoplay参数。当这个参数为1或者true的时候，播放器可以自动播放。（目前我的VPlayer是支持的，与Automattic的合作项目也会考虑加上）
提供优雅的embed代码。技术上，可以将swf后面的参数通过rewrite的方式传入。我目前为Automattic制作的Player就采用了这种技术。与Youtube类似，我们甚至看不见flashvars这个属性：）

]]></description>
			<content:encoded><![CDATA[<p>在<a href="http://automattic.com/">Automattic</a>的项目合作中，收到<a href="http://raanan.com/">Raanan</a>的推荐，来自<a href="http://embedcode.org/page/implementing+codes">这里</a>的一份有趣提示。</p>
<ol>
<li>抉择embed与object标签。object虽然是W3C的标准标签之一，但embed的兼容性更好；</li>
<li>最好能提基于供流式布局的SWF，技术方面可参考<a title="创建基于Flash技术弹性布局的Web应用程序" href="http://www.awflasher.com/blog/archives/822">这篇文章</a>（虽然是AS2的例子，但大体思想可见）。</li>
<li>提供autoplay参数。当这个参数为1或者true的时候，播放器可以自动播放。（目前我的<a title="VPlayer" href="http://www.awflasher.com/vplayer/">VPlayer</a>是支持的，与Automattic的合作项目也会考虑加上）</li>
<li>提供优雅的embed代码。技术上，可以将swf后面的参数通过rewrite的方式传入。我目前为Automattic制作的Player就采用了这种技术。与Youtube类似，我们甚至看不见flashvars这个属性：）</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://as3blog.com/resources/build-graceful-embedding-code-for-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>奇怪的bug（在Firefox中嵌入wmode=transparent的Flash遇到）</title>
		<link>http://as3blog.com/resources/flash-not-not-firing-keyevents-in-firefox/</link>
		<comments>http://as3blog.com/resources/flash-not-not-firing-keyevents-in-firefox/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 07:28:40 +0000</pubDate>
		<dc:creator>Aw</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[key-event]]></category>
		<category><![CDATA[trasparent]]></category>
		<category><![CDATA[wmode]]></category>

		<guid isPermaLink="false">http://as3blog.com/resources/flash-not-not-firing-keyevents-in-firefox/</guid>
		<description><![CDATA[当在Firefox中渲染一段包含wmode=transparent的DOM时，Flash内部的键盘事件全部无法监听。
鼠标时间当然没问题。
不过，这个bug早在06年我就遇到过了。现在Firefox已经是3.0，而Flashplayer也已经是10了，时隔两年，这个问题，仍然没得到解决！
Adobe！
Mozilla！
人民呼唤你们！
]]></description>
			<content:encoded><![CDATA[<p>当在Firefox中渲染一段包含wmode=transparent的DOM时，Flash内部的键盘事件全部无法监听。</p>
<p>鼠标时间当然没问题。</p>
<p>不过，这个bug<a title="Flash的一些问题" href="http://www.awflasher.com/blog/archives/514">早在06年</a>我就遇到过了。现在Firefox已经是3.0，而Flashplayer也已经是10了，时隔两年，这个问题，仍然没得到解决！</p>
<p>Adobe！</p>
<p>Mozilla！</p>
<p>人民呼唤你们！</p>
]]></content:encoded>
			<wfw:commentRss>http://as3blog.com/resources/flash-not-not-firing-keyevents-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

