<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[一加一设计 www.2studio.com]]></title> 
    <link>http://www.2studio.com/blog/</link> 
    <description><![CDATA[Inspiration, Passion & Vision.]]></description> 
    <language>en</language> 
    <copyright><![CDATA[Copyright 2010, 一加一设计 www.2studio.com]]></copyright> 
    <webMaster><![CDATA[erbaoo@gmail.com (erbao)]]></webMaster> 
    <generator>LBS v2.0.304</generator> 
    <pubDate>Wed, 08 Sep 2010 20:06:10 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[Sothink SWF Decompiler v4.5 汉化版]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=127]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Mon, 22 Dec 2008 14:47:02 +0800</pubDate> 
      <description><![CDATA[一般会Flash的人都知道这个最好的反编译软件。<br /><br /><a href="http://www.xun6.com/file/6e18598a6/Sothink+SWF+Decompiler+v4.5+%E6%B1%89%E5%8C%96%E7%89%88.rar.html" title="http://www.xun6.com/file/6e18598a6/Sothink+SWF+Decompiler+v4.5+%E6%B1%89%E5%8C%96%E7%89%88.rar.html" target="_blank">下載文件 Sothink SWF Decompiler v4.5 汉化版.ra ... (4.20 MB)</a>]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=127]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[flash如何适应任何分辨率方法大集合]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=123]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sun, 28 Sep 2008 09:14:51 +0800</pubDate> 
      <description><![CDATA[1.thisin的办法在flash中写：<br /><br />程序代码<br /><br />if (System.capabilities.screenResolutionX&gt;=1024) {<br />Stage.scaleMode = “noScale”;<br />}<br /><br />但是必须设置body里面margin的值得都等于0，加CSS到网页也行<br /><br />2.蓝色月光的办法：<br /><br />也是在FLASH中写AS：<br /><br />程序代码<br /><br />var listen:Object = new Object();<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=123]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[用FLASH里的按钮控制网页中层的显示隐藏]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=122]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 02 Sep 2008 10:46:27 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red"><b>第一种方法：</b></span>（经过测试成功）<br />在&lt;head&gt;标签加入：<br /><br />&lt;script type=&quot;text/JavaScript&quot;&gt;<br />&lt;!--<br />function MM_findObj(n, d) { //v4.01<br />var p,i,x; if(!d) d=document; if((p=n.indexOf(&quot;?&quot;))&gt;0&amp;&amp;parent.frames.length) {<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=122]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[全FLASH网站全屏自适应问题]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=121]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 12 Aug 2008 09:43:52 +0800</pubDate> 
      <description><![CDATA[<b>总结了一些要注意的地方，和一些常用代码：</b><br /><br />插入到网页后，将SWF大小设置为宽100%，高100%<br /><br />Stage.scaleMode = &quot;noScale&quot;;//场景内元素不随场景放大缩小<br />Stage.align = &quot;LT&quot;;//对齐方式为左上角（这样的好处是可以比较好地控制坐标）<br />var autosf:Object = new Object();<br />autosf.onResize = function() {//当场景改变时<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=121]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[做flash网站用的小代码,适合新手]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=113]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 22 Jan 2008 13:59:39 +0800</pubDate> 
      <description><![CDATA[做网站时写的一些小代码，留之无用。因为赶时间，写的比较糙，见谅。<br />//----------------------------------------<br /><br />最近看到某网站一个效果,MC随浏览器窗口缓动居中。自己参考了Stage类写了一个。较简单实用。<br />stop();<br />Stage.align = &quot;TL&quot;;<br />//mc在舞台中上对齐左对齐<br />Stage.scaleMode = &quot;noScale&quot;;<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=113]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[解决网页中Flash控件的激活和虚线问题]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=111]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Wed, 02 Jan 2008 09:57:06 +0800</pubDate> 
      <description><![CDATA[怎么解决网页中Flash控件的激活和虚线问题，因为到了IE6.0后，只要网页中插入了flash，该区域总会出现一个虚线，鼠标移上去会出现提示：按空格键或Enter键以激活并使用该控件，或者是：单击以激活并使用该控件。虽不影响正常使用，但看上去总不爽。而我也学会了“吃老本”，没有深究就断然回答这是不能解决的。因为IE6.0在安全方面做得比较好，我确实不知道这一点也是可以突破的。<br /><br />]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=111]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Flash背景透明设置]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=73]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 02 Jan 2007 22:30:21 +0800</pubDate> 
      <description><![CDATA[透明Flash的使用方法：<br />在插入flash的代码中插入<span style="color:Green">&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;</span>即可实现flash背景透明<br /><br />如：<div class="code">&lt;td width=&quot;375&quot; height=&quot;88&quot; rowspan=&quot;2&quot; valign=&quot;bottom&quot; background=&quot;images/tu.jpg&quot;&gt;&lt;!--设置单元格背景为图片背景（当然要放一个好看的了） --&gt;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=73]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[对于FLASH中的中文乱码问题解决方法]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=72]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 02 Jan 2007 22:17:16 +0800</pubDate> 
      <description><![CDATA[在快捷菜单中选择“动作”选项，打开动作脚本编辑面板，键入下面脚本<br /><br /><span style="color:Green">System.useCodepage = true;</span><br /><br />脚本解释：显示中文字符的语句，使外部文本文件中的中文字符能正常显示。否则只能显示英文字符，中文字符为乱码。]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=72]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[flash右键菜单生成器]]></title> 
      <link><![CDATA[http://www.2studio.com/blog/article.asp?id=67]]></link> 
      <category><![CDATA[flash相关]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 02 Jan 2007 20:36:29 +0800</pubDate> 
      <description><![CDATA[Flash ContextMenu Builder<br /><br /><a href="http://www.2studio.com/blog/uploads/200701/02_203724_flash.swf" title="http://www.2studio.com/blog/uploads/200701/02_203724_flash.swf" target="_blank"><img src="http://www.2studio.com/blog/styles/2studio/images/icon_file.gif" border="0" /> 中文版</a>   |   <a href="http://www.2studio.com/blog/uploads/200701/02_205447_fcb.swf" title="http://www.2studio.com/blog/uploads/200701/02_205447_fcb.swf" target="_blank"><img src="http://www.2studio.com/blog/styles/2studio/images/icon_file.gif" border="0" /> 英文版</a>   |   <a href="http://www.2studio.com/blog/uploads/200701/02_205400_dj_fcb.mxp" title="http://www.2studio.com/blog/uploads/200701/02_205400_dj_fcb.mxp" target="_blank"><img src="http://www.2studio.com/blog/styles/2studio/images/icon_file.gif" border="0" /> 插件下载(MXP)</a>]]></description>
      <wfw:commentRss><![CDATA[http://www.2studio.com/blog/feed.asp?q=comment&id=67]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
