:::: 菜单 ::::
日志类别: Flash/AIR

[转]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 框架支持向后兼容)



Eaze, 缓动大家庭的新成员

在天地会看到auzn翻译的这篇资讯Eaze, 缓动大家庭的新成员。据说效率比TweenLite高而且功能强大,马克之。

Eaze 被设计来:

  • 让Flash制作补间变得轻盈夺目且简单易用,
  • 引入最智能的语法和事件系统,
  • 提供最佳性能平衡,
  • 只用最少量的类,且无依赖性.

其成果是最大优化的, 类似jQuery的语法的这么一个小巧玲珑(~4Kb原始引擎 + ~9Kb包含所有插件)的类库.
[ 阅读全文 ]


Loader的资源不释放

昨天遇到个内存泄露的情况。查到最后发现加载外部的一个.swf里面的倒影截的位图没清除导致的。
推测loader.unloadAndStop()虽然会关闭流,但是并不释放被加载的程序中产生的BitmapData。

切记:除了纯粹的试听对象,所加载的外部程序中有监听、回调、创建了BitmapData的,此外部程序在被unload前请自行了断。否则你再怎么gc都吃着内存。 [ 阅读全文 ]



页面:123456789