:::: 菜单 ::::

一个巴掌一个故事-果果和砖砖

从前有两个小孩,一个叫果果,一个叫砖砖。

果果因为RP问题,从小被野狗咬过一口,所以脸上缺一块肉。

砖砖从小就多才多艺,由于根基很稳,所以对得起“砖砖”的名号。

果果和砖砖小时候一起上学,一起长大。

时光飞逝,果果和砖砖都长大了。

果果因为RP问题,尽管身体长大了,缺的那块肉还是豁在那里。

在偶然的机会下,砖砖邂逅了一个叫MM的才女。

[ 阅读全文 ]


[转]Apple Slaps Developers In The Face

本文转自http://theflashblog.com/?p=1888

[Adobe would like me to make it clear that the opinions below are not the official views of the company and are entirely my own.]

By now you have surely heard about the new iPhone 4.0 SDK language that appears to make creating applications in any non-Apple-approved languages a violation of terms. Obviously Adobe is looking into this wording carefully so I will not comment any further until there is an official conclusion.

[Sentence regarding Apple’s intentions redacted at request from Adobe]. This has nothing to do whatsoever with bringing the Flash player to Apple’s devices. That is a separate discussion entirely. What they are saying is that they won’t allow applications onto their marketplace solely because of what language was originally used to create them. This is a frightening move that has no rational defense other than wanting tyrannical control over developers and more importantly, wanting to use developers as pawns in their crusade against Adobe. This does not just affect Adobe but also other technologies like Unity3D.

[ 阅读全文 ]


Flash SEO Tool

偶然看到了Flash SEO tool,这是一个Flash网站的SEO工具,可以帮助你使Flash网站被网络蜘蛛抓到。此项目在Google code上http://code.google.com/p/flashseotool/即将提供下载。

目前的功能:

  • 用于网络蜘蛛的HTML 菜单和子菜单
  • 标题,meta、keywords和description
  • 友好的URL
  • 简单、自动从AS3代码更新

未来会加入的功能:

  • 创建谷歌sitemap
  • 深度链接集成支持
  • 集成到Delicious、Twitter等
  • 创建RSS

[ 阅读全文 ]



xrope-用于原生AS3显示对象的简单layout库

收藏一个AS3库: xrope by eidiot (http://eidiot.github.com/xrope/zh.html)
这是一个用于原生AS3显示对象的简单layout库。

特点

  • 用于原生AS3显示对象,没有Flex或任何其它依赖。
  • AtomLayout 使用 getBounds() 排列显示对象,不用担心注册点问题。
  • 组合 layout 元素/组 非常容易,不需要额外的显示容器。 (example)

如何使用

  • 创建一个实现 ILayoutGroup 接口的 layout group 并根据需要设置属性。
  • 添加显示对象或其它 ILayoutElement。
  • 调用 layout() 方法

详情http://eidiot.github.com/xrope/zh.html


有了HTML5,flash走不远?

自从HTML5的消息放出后,长江后浪推前浪,越来越多的人开始关注HTML5。去年9月至今,看过不少文章提出Flash将被HTML5替代的观点。
最近又看到一篇文章《 有了HTML5,Flash还能走多远? 》,触动了我的神经:
http://blog.csdn.net/cping1982/archive/2010/02/23/5321010.aspx

感谢作者鹏凌三千分享宝贵想法,本文有理有据。在看到本文之后,我想补充几点个人看法。

1.今非昔比,Flash不一定重蹈Applet覆辙

Flash死不死和许多因素有关,没必要以Applet作对比。时代背景、用户欲求都已变化,原来的经验不再适用。

确实,Flash的缺点一直存在(前不久连号称“最强上网体验”的iPad都因flash的性能问题坚决不装Flash,导致许多网页无法完全显示),但产品好坏只是一部分胜算,运营推广、用户需求也很重要。坏的产品不一定不赚钱,好的产品也不见得赚钱,冥冥之中自有定数,得用户心者得天下。 [ 阅读全文 ]


ARGB颜色合成与提取公式

色彩合成:
设alpha,red,green,blue都是0~255之间的数
color32 = alpha << 24 | red << 16 | green << 8 | blue; 色彩提取:
alpha = color32 >> 24;
red = color32 >> 16 & 0xFF;
green = color32 >> 8 & 0xFF;
blue = color32 & 0xFF;


使用FluorineFx开发RTMP服务器端需要了解的

本文是专门翻译给搭档看的文档,因为可能对某些同学有帮助,所以也贴出来供有需要的人参考。要是不适合你的情况我可无法负责哦。另外,本文是word(页面大小A3)直接导出的,冗余代码太多,懒得改动了,显示分辨率宽度低于1280的兄台阅读时可能发生样式错位,还请将就一下。

概览:

FluorineFx开源库提供了一套用于.net框架的、实现了FLEX/FLASH remotingFlex Data Servicesreal-time messaging的功能。

.NET frameworks supported by FluorineFx

Microsoft .NET Framework 1.1 (1.1.4322)

Microsoft .NET Framework 2.0 (2.0.50727)

Microsoft .NET Framework 3.5 (3.5.21022.8)

Mono 1.2.4

(.NET 框架支持向后兼容)



上个月写的俩小游戏

在“明日天使工作室”与小小的天联手为“习网科技(www.ciwong.com)”制作的益智游戏。界面与动画由明日天使工作室小小的天制作。我完成程序与网站接口。

1.数方块


flash中的图形由数个小方块组成,发挥空间想象力,数数看,图形总共由多少个小方块组成?鼠标左键点击“1~9”的数字按钮便可输入数量,输入正确者可以获得相应的得分。

演示地址
http://www.mousebomb.org/portfolio_demo/jiyi_mofang/mofang.html

截图 [ 阅读全文 ]


页面:123456789...15