More servicesWindows Live
HomeHotmailSpacesOneCare
 
MSN
Sign in
 
 
Spaces home  蚁伐 | I CAN FLASH!PhotosProfileFriendsBlog Tools Explore the Spaces community

Blog

April 30

Google PageRank更新中

查询了几个站点,都有变化
推荐使用站长工具箱查询:http://www.flashplayer.cn/webmaster-toolbox/
March 05

站长工具箱增加多项功能

2008-03-04 增加用户自定义域名列表功能,极大方便了经常查询多个域名的用户,增加了查询结果导出功能
这些功能的添加使站长工具箱更为个性化,为站长们提供更多便利
 
访问下载站长工具箱:http://www.flashplayer.cn/webmaster-toolbox/
February 25

站长工具箱功能拓展

站长工具箱发布将近一年,2008-02-24才做了一次较大的功能拓展,稍后会继续增加一些使用功能。
2008-02-24 加入新版本提醒功能,增加[搜索引擎收录以及反向链接]的搜索引擎选择功能,增加了Sogou指数查询,增加了有道收录情况查询。
December 30

2008年,令人振奋的一年!

2008年,不光有让人奋进的奥运会,对于自己,有了一个稳定的生活工作环境了,是该做些什么了。最近离IT,离Flash,离以前着迷的技术越来越远了,人也变得慵懒了。2008年,这是一个好时间好机遇,在这一年要为自己、为家庭、为朋友多做一些,在这里做个记录。

 

2008年,令人振奋的一年!

December 13

Flash Lite 3发布了?

好像时间没有关注Flash Lite了,Flash Lite 3想必是发布了
November 09

不再需要SWFObject了?

自8月以来,由于专利权问题争吵不断,微软准备在12月份发布一个Internet Explorer (IE) 7的Refresh版本,将去掉网页空间中“点击激活”的功能.
一些网页控件例如Flash在默认状态下被锁定,需要单击才会开始运行,这样有助于帮助系统安全,不过由于需要规避专利问题,微软不得不祭出更好的工具来取代它,那就是Internet Explorer Automatic Component Activation Preview,它将被内置在Windows Vista SP1和XP SP3中。

微软计划在2008年4月推送最终版本的IE更新到所有用户。
微软强调此次更新不需要设计者更改页面架构,原有的渲染定位模式不会出现变化。
此外,IE Refresh不是下一个版本的IE 8.0,目前尚未知晓最终版本发布时间。

July 21

Live Spaces 升级了

挺长时间没有用 Live Spaces,这两天升级了,发现界面变漂亮一些,和live结合的更紧密了,不过差点没有找到在哪发新日志。
最主要的是速度比以前快了不少。
May 01

买了一辆自行车,捷安特ATX670

捷安特ATX670,1300元,虽然不是什么高档车,感觉比较值,以后可以和朋友出去飙了
April 10

Flash CS3中五个最重要的新功能

1. Import Photoshop Files
2. Exporting Motions and Animations
3. Improved Skinning of Components
4. New and Improved Flash Video Importer
5. Brand New Interface
 
详细信息查看原文: http://blogs.zdnet.com/Stewart/?p=336
January 28

Library Sound Control

做了几个函数来控制Library中的声音,方便控制声音播放、循环播放和停止。
 
主要函数如下:
//声音元件需要加上Linkage
var soundObject:Object = new Object(); //存放声音对象
 
function playSound(sName:String,isLoop:Boolean){ //播放声音Library中的声音 sName 声音元件的Linkage,isLoop 是否循环
 if(soundObject[sName])soundObject[sName].stop(sName);
 soundObject[sName] = new Sound();
 soundObject[sName].attachSound(sName);
 if(isLoop){
  soundObject[sName].onSoundComplete = function(){
   this.start();
  }
 }
 soundObject[sName].start();
}
 
function stopSound(sName:String){    //停止声音 sName 声音元件的Linkage "b1" or "b1,b2,...."
 var tmpArr = sName.split(",");
 for(var i in tmpArr){
  soundObject[tmpArr[i]].stop(tmpArr[i]);
 }
}
 
function stopAllSound(){ //停止所有声音
 for(var i in soundObject){
  soundObject[i].stop(i);
  delete soundObject[i];
 }
}
December 11

关键字排名查询工具更新

增加了最近涨势迅猛的114.vnet.cn查询结果的搜索

这是一个flash的小工具,功能是查询某个网址在某个关键字搜索结果中的排名



详细信息以及下载 http://www.flashplayer.cn/keywords/
December 06

Flash Lite 2.1 提供免费下载 (Standalone Player for Symbian Devices)

Adobe® Flash® Lite™ 2.1 for Symbian allows mobile developers to create Flash Lite applications and content for supported Nokia Symbian S60 devices. Mobile developers can now benefit from cross-platform development since Flash Lite 2.1 is also available for BREW and Windows Mobile 5.0 devices. This allows repurposing of content and applications with minimal changes for another platform.
 
有三个版本
Flash Lite 2.1 Standalone Player for Symbian S60 V3.0
Flash Lite 2.1 Standalone Player for Symbian S60 V2.0 FP2
Flash Lite 2.1 Standalone Player for Symbian S60 V2.0 FP3 
 
 
另外 Flash Lite 2.1 Standalone Player for Windows Mobile 5.0 Devices 也有了更新,去掉了以前激活步骤的说明
November 22

今天吃什么? (Flash 版本)

其实最初作这个东西只是想做一个手机版本(Flash Lite 2),顺便也做了一个普通版本
 
下面是这个东西的说明
 
你是否每天都要问自己“今天吃什么?”让这个小工具来帮助你回答吧。你可以用它来记录经常吃的饭菜,价格以及叫餐电话,可以对这些饭菜进行条件选择(随机、最贵、最便宜等)。
  这个工具是通过SharedObject来记录数据的,所以它是与每一台电脑上的数据对应,类似于web中的Cookie,你可以通过页面访问或者将它保存到电脑上来使用 (本机的数据和本页看到的数据是不同的)。
 
普通版本请访问:http://www.flashplayer.cn/whateat/
 
手机版本
适合机型:Dopod 577w/586w/595/596/710/P800w (需要安装Flash Lite 2.1 for WM5)
开发测试平台:Dopod 577w
分辨率:240*320
下载手机版本“今天吃什么”  
 
今天吃什么
November 07

Flash Lite 2.1 Update for Flash Professional 8

Flash Lite 2.1 Update for Flash Professional 8

在可用设备列表中有了Windows Mobile Phone 尺寸有 320*240以及240*320,可喜

Welcome to the preview release of the the Flash Lite 2.1 Update for Flash Professional 8. This update will enable you to develop and test Flash Lite 2.1 applications within Flash Professional 8, and includes the following features:

  • Flash Lite 2.1 publishing support
  • Flash Lite 2.1 emulator support (including XML sockets)
  • Flash Lite 2.1 device profiles
  • Flash Lite 2.1 documentation
  • Updated ActionScript class files
  • Updated Script Assist files

下载 Preview release of Flash Lite 2.1 for Flash Professional 8 (英文版 21MB) (last updated 25 October, 2006) 

October 24

上海轨道交通向导 Nokia版本

今天把 上海轨道交通向导(http://yifa.spaces.live.com/blog/cns!CD8D8A72FFE6B8B3!266.entry)增加了一个适合Nokia机型播放的版本,希望对大家有用。
详细信息以及下载:http://www.flashplayer.cn/swguide/
October 23

Flash Lite 上海轨道交通向导

这个算是我自己制作的第一个比较完整的Flash Lite应用,制作测试平台是Dopod 577w,由于Dopod性能还不错,所以资源消耗方面也没有做太多的控制,跑得还挺顺利的,有Dopod的朋友可以下载看看,有Nokia Flash Lite 2的朋友能够帮忙测试一下那就太感谢了。

Dopod适合机型:Dopod 577W/586W/595/596/710/P800W







更多信息请访问:http://www.flashplayer.cn/swguide/
October 12

Dopod 577w成功安装Flash Lite 2.1

原来计划购买Nokia 6681来跑Flash Lite,最近Flash Lite 2.1 for Windows Mobile 5.0发布,所以放弃Nokia购买了一台Dopod 577w,成功安装了Flash Lite 2.1 for Windows Mobile 5.0,运行一些Flash Lite的文件,很顺利,以后做一些应用或游戏。
 
September 14

Flash Lite 2.1 for Windows Mobile 5.0

This preview release of Adobe® Flash® Lite™ 2.1 for Windows Mobile 5.0, planned for release later this year, allows mobile developers to create Flash Lite applications and content for both Windows Mobile 5.0 Smartphone and Windows Mobile 5.0 Pocket PC configurations. 
 
我们可以有更多的选择了,包括Smartphones和Pocket PCs,对于作Flash Lite内容制作的朋友,的确是个好消息
 
September 13

Apple showtime

苹果9月12日的新品发布会showtime如约而来,带给我们的是全新的iPod产品线。就总体外形变化来看,苹果并未给我们带来如当年iPod nano亮相时的惊喜,基本沿用已有外形,性能上则有所加强,更象是原有产品的全线改进版。

新版本的iPod系列
 

新版本的iPod shuffle
 
 
官方超炫视频:http://www.apple.com/ipodnano/ads/