偶然看到了Flash SEO tool,这是一个Flash网站的SEO工具,可以帮助你使Flash网站被网络蜘蛛抓到。此项目在Google code上http://code.google.com/p/flashseotool/即将提供下载。
目前的功能:
- 用于网络蜘蛛的HTML 菜单和子菜单
- 标题,meta、keywords和description
- 友好的URL
- 简单、自动从AS3代码更新
未来会加入的功能:
- 创建谷歌sitemap
- 深度链接集成支持
- 集成到Delicious、Twitter等
- 创建RSS
[ 阅读全文 ]
遇到问题:
某些情况下Chrome不认document.documentElement.scrollTop,在IE和FF中皆有值,但Chrome里为0。
解决方案:
这时使用:document.documentElement.scrollTop + document.body.scrollTop
引申参考资料:
浏览器的两种模式quirks mode 和strict mode
Activating Browser Modes with Doctype
收藏一个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