<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/ycy303" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/ycy303" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 04 Jan 2008 16:15:00 GMT</lastBuildDate><title>山外的网络自留地</title><description>实现我自己</description><link>http://blog.csdn.net/ycy303/</link><item><title>两个技术障碍</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2026020.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2026020.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2026020.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2026020</trackback:ping><description>两个技术障碍
2007年01月10日 星期三

1。获取FLV文件的播放时长

2。获取外部载入的swf的舞台尺寸

第一个问题：如果FLV是来自自己FMS的，当然有办法解决；但别人的呢？由于多数flv都没有注入时长信息。这使得我开发的flv播放器没办法正确显示播放进度。

第二个问题：由于很多人做的swf，在舞台外放不少东西；或者元件运动出了舞台而没有被删除。这都导致载入的swf文件的_width和_height大于舞台。有的甚至达到了了几千。这使得不能正常控制外部载入的swf的尺寸，使得界面变得丑陋不堪。
&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2026020.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:15:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2026020.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2026020.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>外部载入swf的setMask问题</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2026018.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2026018.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2026018.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2026018</trackback:ping><description>外部载入的swf要能被遮罩，应该在载入完成后再setMask.

经过试验，我发现有一个小技巧可以避免setMask失效的问题。很简单的。

mc1.setMask(mask1);

mc1是被遮罩的，mask1是遮罩的。

只要在mc1里放一个mc2。将外部swf载入到mc2就可以了。呵呵
&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2026018.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:14:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2026018.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2026018.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>setMask遇到的安全沙箱问题</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2026017.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2026017.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2026017.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2026017</trackback:ping><description>setMask遇到的安全沙箱问题
2007年01月10日 星期三

我们知道setMask可以代替遮罩层。但是如果是动态载入东西，在载入完成之前的setMask语句会失效。

所以我们通常的做法是载入完成后再setMask。

但是如果载入的是外域的swf。又会由于安全沙箱的问题令你的setMask不能工作。比如：

载入外部swf的元件，比如叫MC1。我们通常就是在载入完成后用：

MC1.setMask(mask1)

语句进行遮罩（遮罩元件比如叫mask1）。

这样就会出现安全沙箱问题而使遮罩失效。怎么办？

小技巧：我们可以在MC1下放一个名为mc2的子mc,将外部swf载入到mc2。而遮罩还是用上面的语句。

这样就不会出现安全沙箱的问题。

其实还有其他地方也需要避开安全沙箱问题，也可以采取类似的方式。以后再表。
&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2026017.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:13:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2026017.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2026017.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>乱想web</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2026014.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2026014.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2026014.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2026014</trackback:ping><description>乱想web
2007年01月10日 星期三

回首2006,来自互联网的惊涛骇浪,仍然历历在目.

从blog的娱乐化，到网络暴力。从芙蓉姐姐，到伊拉克战争……
互联网正越来越多地发挥着作用，影响着我们的生活。
网民关心的是互联网能给我们带来什么。而不是技术本身。当然，网民所能得到的，必然是有技术在后面支持。但归根结底，用户的体验才是最重要的。
blog就是一个很有说服力的例子。它没有使用什么新的技术，而是一种新的方式——现在人们把它归到web2.0。
满足用户的需求才是最重要的。
所以web是由用户驱动，而不是技术驱动。这是向上帝的回归：用户才是上帝！基于桌面部署，对cpu和内存无休止的消耗，发展到vista已经到了令人瞠目结舌的地步。这难道就是IT的宿命？刚买一两年的电脑就是垃圾，要被迫淘汰！而家里的电视机、冰箱、微波炉，哪个不是要用十年八年？

用户不再愿被wintel驱使。由他们制定的讨厌的游戏规则也逐步被大家抛弃了。亿万网民自己决定自己的命运了——是不是有种当家作主人的感觉？微软的增长率远低于google。当然这里有google还在成长期，而微软已经成&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2026014.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:11:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2026014.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2026014.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>布什的伊拉克困局</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2026001.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2026001.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2026001.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2026001</trackback:ping><description>布什目前在伊拉克面临的困局不是偶然的，是从一开始就注定了的。不是某个战术环节的失误，而是战略决策的错误。

当美国人高举反恐战争的大旗在阿富汗、在朝鲜和伊朗、在伊拉克等地到处树敌，以强硬手段对人的时候，我就一直没有搞明白他这样做的逻辑。

911不是偶然出现的。在此之前十数年以来，美国人在世界各地的财产和人员多次受到的类似的攻击。只不过911更有创意、更震撼。我以为美国人应该反思自己的观念和所作所为。&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2026001.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:07:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2026001.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2026001.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>在大型RIA项目中避开网络沙箱</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2025994.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2025994.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2025994.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2025994</trackback:ping><description>在大型RIA项目中避开网络沙箱
2007年01月12日 星期五

在大型RIA开发中，我们经常采用的结构是：

t1.JPG

在同一个域中，父与子之间、子与子之间互相调用、传递数据是没有问题的。

但是，我们经常要将父swf到处发送，体现RIA便于部署的优势。但这时就出现了安全沙箱的问题。
&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2025994.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:06:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2025994.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2025994.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>运动公式</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2025987.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2025987.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2025987.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2025987</trackback:ping><description>运动公式
2007年01月18日 星期四

当然，以下公式在使用过程中都要循环执行。

1。缓冲运动：

ball._x += (targetX-ball._x)*a;

ball._y += (targetY-ball._y)*a;

//运动的目标是(targetX,targetY)。ball是运动的对象。参数a是控制运动的速度的。（0&lt;1）越大速度越快。
&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2025987.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:05:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2025987.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2025987.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>RIA及FLASH的未来</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2025975.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2025975.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2025975.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2025975</trackback:ping><description>RIA及FLASH的未来
2007年01月19日 星期五

MM如果还存在的话，一定非常郁闷。有一种为他人做嫁衣裳的感觉！

当年他主推的RIA概念，现在却让人觉得ajax才是正份。

不过无论谁是正份，RIA作为WEB的发展方向，也作为web2.0的一个重要特征，已经得到了越来越多的人的认同。

其实flash及flex没有带来RIA的风潮，却让ajax抢尽了风头，是有它自身的原因的。flash即使发展到现在，也还是脱不掉设计软件的特点，没有为ria开发提供什么帮助。而flex又太昂贵，真正使用的人稀少。好在adobe正在带来一些改变。比如apollo、flex2、 as3.0。不过效果还有待检验。

flash的未来显然用户才有最终的决定权，就像它当年兴起一样。flash曾经给web用户带来了激动人心的体验。而今这样的传奇正在被ajax 续写。但flash设计的便捷及随心所欲、开发的轻量级，这些优点仍然没有丧失，或者说还没有挑战者。“闪客”这个名词正说明了flash的生命力。有很多闪客正是从爱好开始的，现在他们中的一批人已经走向了专业道路，到了收获果实的时候了&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2025975.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:02:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2025975.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2025975.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>需要鲁迅</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2025971.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2025971.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2025971.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2025971</trackback:ping><description>需要鲁迅
2007年01月22日 星期一

鲁迅带给我的影响是很大的。主要得益与中学课本里的那些文章。当年有些文章和诗歌我都能背。不过现在都忘了很多了。

寄意寒星诠不查，我以我血荐轩辕。

破帽遮颜过闹市，漏船载酒泛中流。

世上本没有路，走的人多了，就成了路。

《社戏》里的童年快乐

《从三味书屋到百草园》中的：笑人齿缺，曰狗窦大开。

儿时的伙伴闰土

《孔乙己》里的读书人

《伤逝》里理想与现实的爱情

《药》里的愚昧与凄凉

阿Ｑ与尼姑、假洋鬼子的故事

从童年的快乐到中国人的苦难，思想的愚昧，刻画得栩栩如生，入木三分。

而《一件小事》的自审，《资本家的乏走狗》里的论战，又显得那么严肃，毫不容情。

等等……

鲁迅的高超的文学艺术功力

鲁迅对国家民族的责任感：天下兴亡，匹夫有责

鲁迅对自己和国人思想的毫不妥协的审判和批评

鲁迅的战斗精神……

这些正是我们现在需要的东西。人的灵魂，不仅仅是鲁迅那个时代要批判、要唤醒、要革新。其实随时都需要的。

鲁迅，我们永远都需要！
&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2025971.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jan 2008 00:01:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2025971.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2025971.aspx</guid><dc:creator>ycy303</dc:creator></item><item><title>flash信徒</title><link>http://blog.csdn.net/ycy303/archive/2008/01/04/2025964.aspx</link><wfw:comment>http://blog.csdn.net/ycy303/comments/2025964.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ycy303/comments/commentRss/2025964.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2025964</trackback:ping><description>flash信徒
2007年01月22日 星期一

今天收到了我在当当订的三本书。

很好的三本书。但都不是看一眼就搁置在一旁的书。需要我认真、反复、长期阅读，体会。

不同的书有不同的价值。

在《flash mx 编程与创意实现》这本书中，开篇第一句就是：我是一个flash信徒。

“信徒”是什么意思呢？我能这样说自己吗？
&lt;img src =&quot;http://blog.csdn.net/ycy303/aggbug/2025964.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 04 Jan 2008 23:59:00 +0800</pubDate><author>ycy303</author><comments>http://blog.csdn.net/ycy303/archive/2008/01/04/2025964.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ycy303/archive/2008/01/04/2025964.aspx</guid><dc:creator>ycy303</dc:creator></item></channel></rss>