<?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>Acroidea</title>
	<atom:link href="http://www.acroidea.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.acroidea.com</link>
	<description>.net,Asp.net,C#,Silverlight,ActionScript......</description>
	<lastBuildDate>Sat, 31 Oct 2009 03:02:12 +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>fancypantsi.com 网站上 American Design Awards</title>
		<link>http://www.acroidea.com/index.php/2009/10/31/fancypantsi-com/</link>
		<comments>http://www.acroidea.com/index.php/2009/10/31/fancypantsi-com/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 03:00:25 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[网站]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=210</guid>
		<description><![CDATA[fancypantsi.com 网站上 American Design Awards， 这已经是很久前的事了。。。，不过还是要说的，网站可以根据时间切换成白天跟黑夜，如果今天纽约天气不好下雨了，网站上也会下雨的，呵呵。 这个可是我用我自主“研发”的Flash网站框架（Willow Framework）制作的第一个网站了。之后又用此框架完成了多个Flash网站，也在这个过程中不断完善和改进了这个Flash网站框架。
基于Willow Framework的几个主要的Flash网站：
http://www.fancypantsi.com（公司的美国网站）
http://www.dickies.com.cn (Dickies的中国网站）
http://adtchallenge.nbcsports.com
http://www.lakewl.com(卧龙湖国际社区）
对于Willow Framework，下面要做的就是自动化的工作了，不过jsfl是我最讨厌的东西了，真的不想写啊。
]]></description>
			<content:encoded><![CDATA[<p>fancypantsi.com 网站上 American Design Awards， 这已经是很久前的事了。。。，不过还是要说的，网站可以根据时间切换成白天跟黑夜，如果今天纽约天气不好下雨了，网站上也会下雨的，呵呵。 这个可是我用我自主“研发”的Flash网站框架（Willow Framework）制作的第一个网站了。之后又用此框架完成了多个Flash网站，也在这个过程中不断完善和改进了这个Flash网站框架。<br />
基于Willow Framework的几个主要的Flash网站：<br />
<a href="http://www.fancypantsi.com" target="_blank">http://www.fancypantsi.com</a>（公司的美国网站）<br />
<a href="http://www.dickies.com.cn" target="_blank">http://www.dickies.com.cn</a> (Dickies的中国网站）<br />
<a href="http://adtchallenge.nbcsports.com" target="_blank">http://adtchallenge.nbcsports.com</a><br />
<a href="http://www.lakewl.com" target="_blank">http://www.lakewl.com</a>(卧龙湖国际社区）</p>
<p>对于Willow Framework，下面要做的就是自动化的工作了，不过jsfl是我最讨厌的东西了，真的不想写啊。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/10/31/fancypantsi-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get viewport size (width and height) with javascript</title>
		<link>http://www.acroidea.com/index.php/2009/08/18/get-viewport-size-width-and-height-with-javascript/</link>
		<comments>http://www.acroidea.com/index.php/2009/08/18/get-viewport-size-width-and-height-with-javascript/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 05:41:39 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=207</guid>
		<description><![CDATA[
&#60;script type=&#34;text/javascript&#34;&#62;
&#60;!--
&#160;
 var viewportwidth;
 var viewportheight;
&#160;
 // the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight
&#160;
 if &#40;typeof window.innerWidth != 'undefined'&#41;
 &#123;
      viewportwidth = window.innerWidth,
      viewportheight = window.innerHeight
 &#125;
&#160;
// IE6 in standards compliant mode (i.e. with a valid doctype as the first line in [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span>
&nbsp;
 <span style="color: #003366; font-weight: bold;">var</span> viewportwidth<span style="color: #339933;">;</span>
 <span style="color: #003366; font-weight: bold;">var</span> viewportheight<span style="color: #339933;">;</span>
&nbsp;
 <span style="color: #006600; font-style: italic;">// the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight</span>
&nbsp;
 <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> window.<span style="color: #660066;">innerWidth</span> <span style="color: #339933;">!=</span> <span style="color: #3366CC;">'undefined'</span><span style="color: #009900;">&#41;</span>
 <span style="color: #009900;">&#123;</span>
      viewportwidth <span style="color: #339933;">=</span> window.<span style="color: #660066;">innerWidth</span><span style="color: #339933;">,</span>
      viewportheight <span style="color: #339933;">=</span> window.<span style="color: #660066;">innerHeight</span>
 <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">// IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)</span>
&nbsp;
 <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> document.<span style="color: #660066;">documentElement</span> <span style="color: #339933;">!=</span> <span style="color: #3366CC;">'undefined'</span>
     <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000066; font-weight: bold;">typeof</span> document.<span style="color: #660066;">documentElement</span>.<span style="color: #660066;">clientWidth</span> <span style="color: #339933;">!=</span>
     <span style="color: #3366CC;">'undefined'</span> <span style="color: #339933;">&amp;&amp;</span> document.<span style="color: #660066;">documentElement</span>.<span style="color: #660066;">clientWidth</span> <span style="color: #339933;">!=</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span>
 <span style="color: #009900;">&#123;</span>
       viewportwidth <span style="color: #339933;">=</span> document.<span style="color: #660066;">documentElement</span>.<span style="color: #660066;">clientWidth</span><span style="color: #339933;">,</span>
       viewportheight <span style="color: #339933;">=</span> document.<span style="color: #660066;">documentElement</span>.<span style="color: #660066;">clientHeight</span>
 <span style="color: #009900;">&#125;</span>
&nbsp;
 <span style="color: #006600; font-style: italic;">// older versions of IE</span>
&nbsp;
 <span style="color: #000066; font-weight: bold;">else</span>
 <span style="color: #009900;">&#123;</span>
       viewportwidth <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'body'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">clientWidth</span><span style="color: #339933;">,</span>
       viewportheight <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'body'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">clientHeight</span>
 <span style="color: #009900;">&#125;</span>
document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;p&gt;Your viewport width is '</span><span style="color: #339933;">+</span>viewportwidth<span style="color: #339933;">+</span><span style="color: #3366CC;">'x'</span><span style="color: #339933;">+</span>viewportheight<span style="color: #339933;">+</span><span style="color: #3366CC;">'&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//--&gt;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/08/18/get-viewport-size-width-and-height-with-javascript/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Reset Identity Column Value in SQL Server (转)</title>
		<link>http://www.acroidea.com/index.php/2009/07/21/reset-identity-column-value-in-sql-server/</link>
		<comments>http://www.acroidea.com/index.php/2009/07/21/reset-identity-column-value-in-sql-server/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 14:28:41 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=202</guid>
		<description><![CDATA[If you are using an identity column on your SQL Server tables, you can set the next insert value to whatever value you want. An example is if you wanted to start numbering your ID column at 1000 instead of 1.
It would be wise to first check what the current identify value is. We can [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using an identity column on your SQL Server tables, you can set the next insert value to whatever value you want. An example is if you wanted to start numbering your ID column at 1000 instead of 1.</p>
<p>It would be wise to first check what the current identify value is. We can use this command to do so:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">DBCC CHECKIDENT <span style="color: #66cc66;">&#40;</span>’tablename’<span style="color: #66cc66;">,</span> NORESEED<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>For instance, if I wanted to check the next ID value of my orders table, I could use this command:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">DBCC CHECKIDENT <span style="color: #66cc66;">&#40;</span>orders<span style="color: #66cc66;">,</span> NORESEED<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>To set the value of the next ID to be 1000, I can use this command:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">DBCC CHECKIDENT <span style="color: #66cc66;">&#40;</span>orders<span style="color: #66cc66;">,</span> RESEED<span style="color: #66cc66;">,</span> <span style="color: #cc66cc;">999</span><span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>Note that the next value will be whatever you reseed with + 1, so in this case I set it to 999 so that the next value will be 1000.</p>
<p>Another thing to note is that you may need to enclose the table name in single quotes or square brackets if you are referencing by a full path, or if your table name has spaces in it. (which it really shouldn’t)</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">DBCC CHECKIDENT <span style="color: #66cc66;">&#40;</span> ‘databasename<span style="color: #66cc66;">.</span>dbo<span style="color: #66cc66;">.</span>orders’<span style="color: #66cc66;">,</span>RESEED<span style="color: #66cc66;">,</span> <span style="color: #cc66cc;">999</span><span style="color: #66cc66;">&#41;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/07/21/reset-identity-column-value-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>vs快捷键大全（转）</title>
		<link>http://www.acroidea.com/index.php/2009/07/13/vs-shortcut-key/</link>
		<comments>http://www.acroidea.com/index.php/2009/07/13/vs-shortcut-key/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 02:13:40 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=197</guid>
		<description><![CDATA[快捷键 功能
CTRL + SHIFT + B生成解决方案
CTRL + F7 生成编译
CTRL + O 打开文件
CTRL + SHIFT + O打开项目
CTRL + SHIFT + C显示类视图窗口
F4 显示属性窗口
SHIFT + F4显示项目属性窗口
CTRL + SHIFT + E显示资源视图
F12 转到定义
CTRL + F12转到声明
CTRL + ALT + J对象浏览
CTRL + ALT + F1帮助目录
CTRL + F1 动态帮助
F1 帮助
SHIFT + F1当前窗口帮助
CTRL + ALT + F3帮助-搜索
SHIFT + ALT + ENTER全屏显示
CTRL + -向后定位
CTRL + [...]]]></description>
			<content:encoded><![CDATA[<p>快捷键 功能<br />
CTRL + SHIFT + B生成解决方案<br />
CTRL + F7 生成编译<br />
CTRL + O 打开文件<br />
CTRL + SHIFT + O打开项目<br />
CTRL + SHIFT + C显示类视图窗口<br />
F4 显示属性窗口<br />
SHIFT + F4显示项目属性窗口<br />
CTRL + SHIFT + E显示资源视图<br />
F12 转到定义<br />
CTRL + F12转到声明<br />
CTRL + ALT + J对象浏览<br />
CTRL + ALT + F1帮助目录<br />
CTRL + F1 动态帮助<br />
F1 帮助<br />
SHIFT + F1当前窗口帮助<br />
CTRL + ALT + F3帮助-搜索<br />
SHIFT + ALT + ENTER全屏显示<br />
CTRL + -向后定位<br />
CTRL + SHIFT + -向前定位<br />
CTRL + F4关闭文档窗口<br />
CTRL + PAGE DOWN光标定位到窗口上方<br />
CTRL + PAGE UP光标定位到窗口下方<br />
CTRL + F6<br />
CTRL + TAB下一个文档窗口<br />
CTRL + SHIFT + F6<br />
CTRL + SHIFT + TAB上一个文档窗口<br />
ALT + F6下一个面板窗口<br />
CTRL + K, CTRL + L取消remark<br />
CTRL + K, CTRL + C注释选择的代码<br />
CTRL + K, CTRL + U取消对选择代码的注释<br />
CTRL + M, CTRL + O折叠代码定义<br />
CTRL + M, CTRL + L展开代码定义<br />
CTRL + DELETE删除至词尾<br />
CTRL + BACKSPACE删除至词头<br />
SHIFT + TAB取消制表符<br />
CTRL + U转小写<br />
CTRL + SHIFT + U转大写<br />
CTRL + SHIFT + END选择至文档末尾<br />
CTRL + SHIFT + HOME选择至文档末尾开始<br />
SHIFT + END选择至行尾<br />
SHIFT + HOME选择至行开始处<br />
SHIFT + ALT + END垂直选择到最后尾<br />
SHIFT + ALT + HOME垂直选择到最前面<br />
CTRL + A全选<br />
CTRL + W选择当前单词<br />
CTRL + SHIFT + PAGE UP选择至本页前面<br />
CTRL + SHIFT + PAGE DOWN选择至本页后面<br />
CTRL + END文档定位到最后<br />
CTRL + HOME文档定位到最前<br />
CTRL + G转到…<br />
CTRL + K, CTRL + P上一个标签<br />
CTRL + K, CTRL + N下一个标签<br />
ALT + F10调试-ApplyCodeChanges<br />
CTRL + ALT+ Break停止调试<br />
CTRL + SHIFT + F9 取消所有断点<br />
CTRL + F9允许中断<br />
CTRL + SHIFT + F5调试-重新开始<br />
F5运行调试<br />
CTRL + F5运行不调试<br />
F10跨过程序执行<br />
F11单步逐句执行<br />
CTRL + J列出成员<br />
CTRL + PAGE DOWN下一个视图<br />
CTRL + B格式-粗体<br />
CTRL + SHIFT + T格式-文字缩进</p>
<p>调试快捷键</p>
<p>F6: 生成解决方案<br />
Ctrl+F6: 生成当前项目<br />
F7: 查看代码<br />
Shift+F7: 查看窗体设计器<br />
F5: 启动调试<br />
Ctrl+F5: 开始执行(不调试)<br />
Shift+F5: 停止调试<br />
Ctrl+Shift+F5: 重启调试<br />
F9: 切换断点<br />
Ctrl+F9: 启用/停止断点<br />
Ctrl+Shift+F9: 删除全部断点<br />
F10: 逐过程<br />
Ctrl+F10: 运行到光标处<br />
F11: 逐语句<br />
编辑快捷键</p>
<p>Shift+Alt+Enter: 切换全屏编辑<br />
Ctrl+B,T / Ctrl+K,K: 切换书签开关<br />
Ctrl+B,N / Ctrl+K,N: 移动到下一书签<br />
Ctrl+B,P: 移动到上一书签<br />
Ctrl+B,C: 清除全部标签<br />
Ctrl+I: 渐进式搜索<br />
Ctrl+Shift+I: 反向渐进式搜索<br />
Ctrl+F: 查找<br />
Ctrl+Shift+F: 在文件中查找<br />
F3: 查找下一个<br />
Shift+F3: 查找上一个<br />
Ctrl+H: 替换<br />
Ctrl+Shift+H: 在文件中替换<br />
Alt+F12: 查找符号(列出所有查找结果)<br />
Ctrl+Shift+V: 剪贴板循环<br />
Ctrl+左右箭头键: 一次可以移动一个单词<br />
Ctrl+上下箭头键: 滚动代码屏幕，但不移动光标位置。<br />
Ctrl+Shift+L: 删除当前行<br />
Ctrl+M,M: 隐藏或展开当前嵌套的折叠状态<br />
Ctrl+M,L: 将所有过程设置为相同的隐藏或展开状态<br />
Ctrl+M,P: 停止大纲显示<br />
Ctrl+E,S: 查看空白<br />
Ctrl+E,W: 自动换行<br />
Ctrl+G: 转到指定行<br />
Shift+Alt+箭头键: 选择矩形文本<br />
Alt+鼠标左按钮: 选择矩形文本<br />
Ctrl+Shift+U: 全部变为大写<br />
Ctrl+U: 全部变为小写</p>
<p>代码快捷键</p>
<p>Ctrl+J / Ctrl+K,L: 列出成员<br />
Ctrl+Shift+空格键 / Ctrl+K,P: 参数信息<br />
Ctrl+K,I: 快速信息<br />
Ctrl+E,C / Ctrl+K,C: 注释选定内容<br />
Ctrl+E,U / Ctrl+K,U: 取消选定注释内容<br />
Ctrl+K,M: 生成方法存根<br />
Ctrl+K,X: 插入代码段<br />
Ctrl+K,S: 插入外侧代码<br />
F12: 转到所调用过程或变量的定义</p>
<p>窗口快捷键</p>
<p>Ctrl+W,W: 浏览器窗口<br />
Ctrl+W,S: 解决方案管理器<br />
Ctrl+W,C: 类视图<br />
Ctrl+W,E: 错误列表<br />
Ctrl+W,O: 输出视图<br />
Ctrl+W,P: 属性窗口<br />
Ctrl+W,T: 任务列表<br />
Ctrl+W,X: 工具箱<br />
Ctrl+W,B: 书签窗口<br />
Ctrl+W,U: 文档大纲<br />
Ctrl+D,B: 断点窗口<br />
Ctrl+D,I: 即时窗口<br />
Ctrl+Tab: 活动窗体切换<br />
Ctrl+Shift+N: 新建项目<br />
Ctrl+Shift+O: 打开项目<br />
Ctrl+Shift+S: 全部保存<br />
Shift+Alt+C: 新建类<br />
Ctrl+Shift+A: 新建项<br />
VS2005的隐藏快捷键</p>
<p>这里我将会把一些无意中发现的VS2005中没有明确指出的快捷键共享出来，并不是所有的快捷键，或者常见的一些快捷键。<br />
1、Ctrl+Space直接完成类或函数（本来这个并不算隐藏的快捷键，但是因为中文输入法抢占这个快捷键，所以。。。，替代的快捷键是Alt+Right）<br />
2、Shift+Delete整行删除，并且将这一行放到剪贴板（这时候不能选中一段内容）<br />
3、Shift+Insert粘贴，有点匪夷所思，Ctrl+V就可以了，大概是为了和Shift+Delete对应吧<br />
4、Ctrl+Up，Ctrl+Down滚动编辑器，但尽量不移动光标，光标保证在可见范围内<br />
5、Ctrl+BackSpace，Ctrl+Delete整词删除，有的时候很有用<br />
6、Ctrl+Left，Ctrl+Right按整词移动光标（不算隐藏，和前面几条加起来就是Ctrl光标控制套件了）<br />
7、Alt+Shift+F10打开执行改名，实现接口和抽象类的小窗口（还可以用Ctrl+.，不过有的中文输入法用到这个）<br />
8、Shift+F9调试是打开QuickWatch，内容是当前光标所在处的内容<br />
9、F12转跳到定义，很有用的快捷键<br />
10、Shift+F12查找所有引用<br />
11、Ctrl+F10=F5，开始Debug<br />
12、Ctrl+F6循环察看代码窗口，有点Ctrl+Tab的感觉<br />
13、Ctrl+F3查找当前光标选中的内容，可以和F3配合使用<br />
14、Ctrl+F2将焦点转移到类的下拉框上<br />
15、Alt+F7=Ctrl+Tab<br />
16、Alt+F11新开VS2005并编辑宏<br />
17、Alt+F12查找=Ctrl+F</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/07/13/vs-shortcut-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android ERROR: unknown virtual device name: &#8216;myavd&#8217;</title>
		<link>http://www.acroidea.com/index.php/2009/06/30/android-error-unknown-virtual-device-name-myavd/</link>
		<comments>http://www.acroidea.com/index.php/2009/06/30/android-error-unknown-virtual-device-name-myavd/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 01:28:22 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Eclipse]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=194</guid>
		<description><![CDATA[只是想在Eclipse中写一个Hello World程序，没想按照Google Android Dev Guide的说明做，最后出现了
ERROR: unknown virtual device name: &#8216;myavd&#8217;
这样的错误，整了半天终于找到解决方法。我用的是Vista，而我又喜欢将所有可以设置的用户文件的位置改至D盘下。这样在用Eclipse或者从命令行创建Android Emulator时，相应的文件是被放置到 “D:\Users\&#60;username&#62;\.android“ 下面了，而程序运行时仍然从 “C:\Users\&#60;username&#62;\.android“ 下查找相应的配置文件，从而导致上面的错误，把 “D:\Users\&#60;username&#62;\.android“ 下的文件复制到 “C:\Users\&#60;username&#62;\.android“ 下面即可解决这个问题。
]]></description>
			<content:encoded><![CDATA[<p>只是想在Eclipse中写一个Hello World程序，没想按照Google Android Dev Guide的说明做，最后出现了</p>
<p>ERROR: unknown virtual device name: &#8216;myavd&#8217;</p>
<p>这样的错误，整了半天终于找到解决方法。我用的是Vista，而我又喜欢将所有可以设置的用户文件的位置改至D盘下。这样在用Eclipse或者从命令行创建Android Emulator时，相应的文件是被放置到 “D:\Users\&lt;username&gt;\.android“ 下面了，而程序运行时仍然从 “C:\Users\&lt;username&gt;\.android“ 下查找相应的配置文件，从而导致上面的错误，把 “D:\Users\&lt;username&gt;\.android“ 下的文件复制到 “C:\Users\&lt;username&gt;\.android“ 下面即可解决这个问题。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/06/30/android-error-unknown-virtual-device-name-myavd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FlashPlayer 9 与 10不同之处</title>
		<link>http://www.acroidea.com/index.php/2009/06/10/differ-flashplayer-9-10/</link>
		<comments>http://www.acroidea.com/index.php/2009/06/10/differ-flashplayer-9-10/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 09:51:06 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=184</guid>
		<description><![CDATA[发现了一些FlashPlayer 9 与FlashPlayer 10之间的不一样之处，很是怪异。
处理XML：
在Flash 10中将播放器设为Player 9后下面代码执行结果为

&#60;site&#62;
&#60;p&#62;world&#60;/p&#62;
&#60;/site&#62;

而设为Player 10后执行结果为

&#60;p&#62;world&#60;/p&#62;

//以下为代码

1
2
3
var xml:XML = &#60;config&#62;&#60;site&#62;&#60;/site&#62;&#60;/config&#62;;
xml = xml.site&#91;0&#93;.appendChild&#40;&#34;&#60;p&#62;world&#60;/p&#62;&#34;&#41;;
trace&#40;xml&#41;;

而下面这个代码的执行结果确又是一样的
//代码

1
2
3
var xml:XML = &#60;config&#62;&#60;site&#62;&#60;/site&#62;&#60;/config&#62;;
xml = xml.site&#91;0&#93;.appendChild&#40;&#60;p&#62;world&#60;/p&#62;&#41;;
trace&#40;xml&#41;;

结果都是
&#60;site&#62;
&#60;p&#62;world&#60;/p&#62;
&#60;/site&#62;
有点晕，不知道是何原因。所以为了防止播放器的不一致，遇到这种appendChild()里面放置字符串的情况还是改用类似下面的写法，算Flash狠了。

1
2
3
var xml:XML = &#60;config&#62;&#60;site&#62;&#60;/site&#62;&#60;/config&#62;;
xml = xml.site&#91;0&#93;.appendChild&#40;new XML&#40;&#34;&#60;p&#62;world&#60;/p&#62;&#34;&#41;&#41;;
trace&#40;xml&#41;;

这样，两个播放器也就一致了。
代码的执行顺序：
这个很有问题，如果两个代码执行顺序不一致，那可能运行的效果就完全不一致。不过两个版本确实在这方面存在差异。
如果我们只是简单地新建一个Flash文件，在里面新建一个MovieClip并且在其第一帧上增加下面的代码：

1
2
3
trace&#40;&#34;onframe1 before call gotoandplay 10&#34;&#41;;
gotoAndStop&#40;10&#41;;
trace&#40;&#34;on frame 1 after call gotoandplay 10&#34;&#41;;

在其第10帧处插入下面的代码：

1
trace&#40;&#34;now on frame 10&#34;&#41;;

把文件的设置中的播放器设成 Flash Player 9 或者 Flash Player 10 其执行结果是一致的，都是：
onframe1 before call gotoandplay 10
on frame 1 after call gotoandplay 10
now on [...]]]></description>
			<content:encoded><![CDATA[<p>发现了一些FlashPlayer 9 与FlashPlayer 10之间的不一样之处，很是怪异。</p>
<p>处理XML：</p>
<p>在Flash 10中将播放器设为Player 9后下面代码执行结果为</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;site<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;p<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>world<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/p<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/site<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>而设为Player 10后执行结果为</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;p<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>world<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/p<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>//以下为代码</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">xml</span>:<span style="color: #0066CC;">XML</span> = <span style="color: #66cc66;">&lt;</span>config<span style="color: #66cc66;">&gt;&lt;</span>site<span style="color: #66cc66;">&gt;&lt;/</span>site<span style="color: #66cc66;">&gt;&lt;/</span>config<span style="color: #66cc66;">&gt;</span>;
<span style="color: #0066CC;">xml</span> = <span style="color: #0066CC;">xml</span>.<span style="color: #006600;">site</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #0066CC;">appendChild</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&lt;p&gt;world&lt;/p&gt;&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">xml</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>而下面这个代码的执行结果确又是一样的</p>
<p>//代码</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">xml</span>:<span style="color: #0066CC;">XML</span> = <span style="color: #66cc66;">&lt;</span>config<span style="color: #66cc66;">&gt;&lt;</span>site<span style="color: #66cc66;">&gt;&lt;/</span>site<span style="color: #66cc66;">&gt;&lt;/</span>config<span style="color: #66cc66;">&gt;</span>;
<span style="color: #0066CC;">xml</span> = <span style="color: #0066CC;">xml</span>.<span style="color: #006600;">site</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #0066CC;">appendChild</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&lt;</span>p<span style="color: #66cc66;">&gt;</span>world<span style="color: #66cc66;">&lt;/</span>p<span style="color: #66cc66;">&gt;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">xml</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>结果都是<br />
&lt;site&gt;<br />
&lt;p&gt;world&lt;/p&gt;<br />
&lt;/site&gt;</p>
<p>有点晕，不知道是何原因。所以为了防止播放器的不一致，遇到这种appendChild()里面放置字符串的情况还是改用类似下面的写法，算Flash狠了。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">xml</span>:<span style="color: #0066CC;">XML</span> = <span style="color: #66cc66;">&lt;</span>config<span style="color: #66cc66;">&gt;&lt;</span>site<span style="color: #66cc66;">&gt;&lt;/</span>site<span style="color: #66cc66;">&gt;&lt;/</span>config<span style="color: #66cc66;">&gt;</span>;
<span style="color: #0066CC;">xml</span> = <span style="color: #0066CC;">xml</span>.<span style="color: #006600;">site</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #0066CC;">appendChild</span><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">XML</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&lt;p&gt;world&lt;/p&gt;&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">xml</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>这样，两个播放器也就一致了。</p>
<p>代码的执行顺序：</p>
<p>这个很有问题，如果两个代码执行顺序不一致，那可能运行的效果就完全不一致。不过两个版本确实在这方面存在差异。</p>
<p>如果我们只是简单地新建一个Flash文件，在里面新建一个MovieClip并且在其第一帧上增加下面的代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;onframe1 before call gotoandplay 10&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">gotoAndStop</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;on frame 1 after call gotoandplay 10&quot;</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>在其第10帧处插入下面的代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;now on frame 10&quot;</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>把文件的设置中的播放器设成 Flash Player 9 或者 Flash Player 10 其执行结果是一致的，都是：</p>
<p>onframe1 before call gotoandplay 10<br />
on frame 1 after call gotoandplay 10<br />
now on frame 10</p>
<p>也就是说是执行完第一帧上的所有代码后再执行第十帧上的代码，这一点应该是跟我们想像的一致的，也没什么异议。</p>
<p>但是我们改一种写法，删除刚才这个文件中的这个MovieClip中的第一帧的代码，将这个MoiveClip的Class设置成TestMC，并且新建一个TestMC.as的文件，内部代码为：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">package
<span style="color: #66cc66;">&#123;</span>
<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #0066CC;">MovieClip</span>;
&nbsp;
<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> TestMC <span style="color: #0066CC;">extends</span> <span style="color: #0066CC;">MovieClip</span>
<span style="color: #66cc66;">&#123;</span>
<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> TestMC<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
<span style="color: #0066CC;">stop</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'[use class]before gotoAndStop 10'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">gotoAndStop</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;[use class]after gotoAndStop 10&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p>这样一来，在播放器设成 Flash Player 9时执行的结果是：</p>
<p>[use class]before gotoAndStop 10<br />
[use class]after gotoAndStop 10<br />
now on frame 10</p>
<p>跟刚才的上面的顺序也是一致的，不过在将播放器设成 Flash Player 10时，执行结果却是：</p>
<p>[use class]before gotoAndStop 10<br />
now on frame 10<br />
[use class]after gotoAndStop 10</p>
<p>也就是说这样一来，先执行被调用的帧上的代码，然后再继续现有的代码，等于是把“gotoAndStop”到的相应帧上的代码插入到现有的代码中执行，这个顺序跟之前的是完全不一样的。到底是哪一种执行的顺序是更合理的？不是很好说，不过作为一个专业级的程序员，一个好的习惯是尽量少在帧上写代码。</p>
<p><a title="点击此处" href="http://www.acroidea.com/wp-content/uploads/2009/06/flash9vs10_2.rar" target="_blank">点击此处</a>下载与此相关的测试文件。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/06/10/differ-flashplayer-9-10/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Dickies.com.cn基本完工上线</title>
		<link>http://www.acroidea.com/index.php/2009/06/05/dickies/</link>
		<comments>http://www.acroidea.com/index.php/2009/06/05/dickies/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 13:00:52 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[网站]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=182</guid>
		<description><![CDATA[最近很忙啊，不过这两天终于把http://www.dickies.com.cn 忙得差不多了，今天算是正式上线了，下午还是发现了几个小的bug，给改了一下，可能还会有一些，以后发现再改吧。
这次这个网站继续使用自己的这个网站框架，也进一步完善了这个框架，下一步要解决的就是框架资源占用的问题。如何能够在不依赖本地缓存又不增加内存使用的情况下保留已经加载过的文件，不至再到服务器上下载，这个看来还是个难题啊。
]]></description>
			<content:encoded><![CDATA[<p>最近很忙啊，不过这两天终于把<a href="http://www.dickies.com.cn" target="_blank">http://www.dickies.com.cn</a> 忙得差不多了，今天算是正式上线了，下午还是发现了几个小的bug，给改了一下，可能还会有一些，以后发现再改吧。<br />
这次这个网站继续使用自己的这个网站框架，也进一步完善了这个框架，下一步要解决的就是框架资源占用的问题。如何能够在不依赖本地缓存又不增加内存使用的情况下保留已经加载过的文件，不至再到服务器上下载，这个看来还是个难题啊。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/06/05/dickies/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Background Images and CSS in HTML Email</title>
		<link>http://www.acroidea.com/index.php/2009/05/28/background-images-and-css-in-html-email/</link>
		<comments>http://www.acroidea.com/index.php/2009/05/28/background-images-and-css-in-html-email/#comments</comments>
		<pubDate>Thu, 28 May 2009 04:33:56 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=180</guid>
		<description><![CDATA[http://www.mailchimp.com/blog/background-images-and-css-in-html-email/
We’ve noticed a few people having issues with background images in their HTML email designs, so we thought we’d post some quick tips here.
Lots of email applications (especially the browser-based ones, like Yahoo!Mail, Hotmail and Gmail) strip out your ,  and  tags. It kinda makes sense, if you think about it. They’re displaying [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.mailchimp.com/blog/background-images-and-css-in-html-email/</p>
<p>We’ve noticed a few people having issues with background images in their HTML email designs, so we thought we’d post some quick tips here.</p>
<p>Lots of email applications (especially the browser-based ones, like Yahoo!Mail, Hotmail and Gmail) strip out your <HTML>, <HEAD> and <BODY> tags. It kinda makes sense, if you think about it. They’re displaying your email inside their web page. They don’t want your page settings (like background colors, files, CSS, etc) to interfere with their overall interface. So they strip it all out.</p>
<p>That means you’ll kinda have to rig your HTML email to make certain things work…</p>
<p>Background Images and colors in HTML Email</p>
<p>If you want to set a background image or color in your HTML email, you can set it in your BODY tag, where it usually goes. That’ll work ok for some desktop email applications, like Microsoft Outlook.</p>
<p>But to make it work across more email applications, you need to “rig” your code so that your entire email is set inside a big TABLE WRAP. Just set a big table that’s 100% wide, then specify your background color and image there. We recommend doing it the old-fashioned “bgcolor” or “background=”&#8221; way. If you prefer doing it with CSS, be sure to read the “CSS” tips below. As with all images in HTML email, they need to be hosted on your server, and you need to point to them with absolute (not relative) paths.</p>
<p>Once you’ve created the big TABLE WRAP with your background color or image, place your actual newsletter code inside, and you’re good to go.</p>
<p>If you’re a very experienced web designer, this will no doubt make you feel dirty, and make you want to take a shower immediately afterwards. But HTML email isn’t as reliable as web pages are (yet) and there are way too many email apps out there that display HTML differently. Until all the various email apps get a little more consistent, you’re going to have to get used to “rigs” like this.<br />
CSS in HTML Email</p>
<p>There are all sorts of “CSS tips and tricks for HTML email.” But the main thing to remember is that the <HEAD> and <BODY> tags get stripped when HTML email is displayed in browser based applications. So that means you can’t link to an external CSS file from the <HEAD> portion of your email. You’ll need to use embedded or inline CSS in HTML email instead. And, if you take the embedded approach, be sure to place all your code BELOW the <BODY> tag. Place it just above your content. Feels dirty, I know. But it’s the only way to get CSS to work (reliably) in email.</p>
<p>Periods = “Stop Email!”<br />
If you start any line in your email with a “period,” some email servers interpret that as “end of message” and they’ll stop it right there. D’oh! So this affects how you need to code your CSS. When you embed your CSS, be careful with the little “dots” or “periods” that are used to define styles. If you start your line of CSS with “.header” for instance, that’s exactly where some email servers will cut your message off. So in your CSS, add a space before every single line that starts with a period.</p>
<p>It’s not just a CSS thing. It’s any line that starts with a period (see our previous post). But the CSS portion of your email is more likely to have lines that start with periods, so it’s good to mention it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/05/28/background-images-and-css-in-html-email/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>css实现自定义图片的滚动条</title>
		<link>http://www.acroidea.com/index.php/2009/05/16/css-custom-scrollbar-imag/</link>
		<comments>http://www.acroidea.com/index.php/2009/05/16/css-custom-scrollbar-imag/#comments</comments>
		<pubDate>Sat, 16 May 2009 11:12:19 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=178</guid>
		<description><![CDATA[http://www.hesido.com/web.php?page=customscrollbar
]]></description>
			<content:encoded><![CDATA[<p>http://www.hesido.com/web.php?page=customscrollbar</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/05/16/css-custom-scrollbar-imag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding .FLV MIME Type in IIS</title>
		<link>http://www.acroidea.com/index.php/2009/04/26/adding-flv-mime-type-in-iis/</link>
		<comments>http://www.acroidea.com/index.php/2009/04/26/adding-flv-mime-type-in-iis/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 02:09:54 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.acroidea.com/?p=176</guid>
		<description><![CDATA[.FLV files are already the best method for publishing video on the web, and are sure to become even better with the new enhancements in Flash 8. When serving .flv files off of a Windows Server 2003 (or any other Windows server I would imagine) requires setting up the MIME type on the server first [...]]]></description>
			<content:encoded><![CDATA[<p>.FLV files are already the best method for publishing video on the web, and are sure to become even better with the new enhancements in Flash 8. When serving .flv files off of a Windows Server 2003 (or any other Windows server I would imagine) requires setting up the MIME type on the server first (it isn&#8217;t one of the native MIME types on MS servers).</p>
<p>You can figure out easily if your server is configured to support .flv files by posting a .flv file on a server and navigating to the URL of that .flv in a browser. If you see a LONG string of garbage on the screen, your server isn&#8217;t set up for .FLVs and needs to have the MIME type set up.</p>
<p>Adding .flv MIME type in IIS</p>
<p>1) Select the site to configure in IIS, right click and select &#8220;Properties&#8221;<br />
2) Under HTTP Headers Tab, select &#8220;File Types&#8221; under the MIME Map section and select &#8220;New Type&#8221;<br />
3) Type &#8220;.flv&#8221; as the associated extension and &#8220;video/x-flv&#8221; as the content type.<br />
4) Select &#8220;OK&#8221; and you&#8217;re ready to fly! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.acroidea.com/index.php/2009/04/26/adding-flv-mime-type-in-iis/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
