Archives for Flash
Touch, Print, Go
www.hp.com/go/touchprinting
...more»
Sunbrella, our first ever iPhone App, is a light-weight weather software for your daily use.
It is focused on providing you with the raining info, every time you’re about to go out, just check out Sunbrella, and we will tell you weather you should take an umbrella or not.
來自helloicon team的居家旅行必備之良品app —- Sunbrella, 只要輕輕一按, 今天要不要帶傘立刻告訴您~ 快去app store 領取吧!
...more»
最近在做个flash lite 2.1的项目,要在手机上做个prototype,以前也没写过,于是查阅了下flash lite的帮助,其实还是很容易的,写法跟as 2.0基本一样。还好我是as 2.0一路学过来的,如果这个项目给个as 3起家的兄弟那他可就惨了。来一起回忆下as 2.0的美妙代码吧。
1,得到手机电量
function getBatt():Number {
var battLevel:Number = fscommand2("GetBatteryLevel");
var maxBatt:Number = fscommand2("GetMaxBatteryLevel");
var Batt:Number = battLevel/maxBatt;
return (Batt);
}
2,得到手机信号强度
function getSignal():Number {
var mvol:Number = fscommand2("GetSignalLevel");
var maxvolume:Number = fscommand2("GetMaxSignalLevel");
var Signal:Number = mvol/maxvolume;
aa.text = Signal;
return (Signal);
}
3,控制手机振动
//启动一个振动 2.5 秒,停止 1 秒 重复两次
fscommand2("StartVibrate", 2500, 1000, 2);
//停止手机振动
fscommand2("StopVibrate");
4,全屏显示
fscommand2("FullScreen", "true");
5,可以屏蔽手机最上面两个功能键
fscommand2("setSoftKeys", "soft", "Back");
6,无缩放
Stage.scaleMode = "noScale";
7,侦听屏幕尺寸
var myListener:Object = new Object();
myListener.onResize = function() {
trace(Stage.width + " " + Stage.height);
};
Stage.addListener(myListener);
8,按钮事件
var ...more»
不知道是不是说的iPhone?现在多点的手机较少
近日,Adobe的CTO Kevin Lynch在一次分析师会议上,公开了Adobe将在2010年上半年发布的Flash Player for Mobile的版本中加入Multi-touch多点触摸的支持功能,借此支持未来智能终端手机上的各种多点触摸应用。此外,Flash Player for Mobile还将加入众多的针对GPS API的原生支持,还有特别的FP加速功能。
http://www.readwriteweb.com/archives/adobe_mobile_flash_to_get_accelerometer_multi-touc.php ...more»
Tuner HiFi Radio 一款基于RTMP协议的播放器.服务器端是Adobe Flash Media Servers.iPhone 终于有跟flash搭上关系的程序拉。
Some of the most popular apps for the iPhone and iPod touch are those that allow users to stream music from the Internet. A new application is now available for the iPhone that supports the true RTPM protocol for streaming music from Adobe Flash Media Servers.
The application is called Tuner2 Hi-Fi Radio and ...more»
2009年6月24日,Adobe公司和HTC公司同时发布声明,将在HTC Hero这款基于Android系统的智能手机上支持Flash,目前的FP支持AS2和ON2 VP6,而FP10的支持将会在一段时间后在HTC的Android手机上。
Adobe官方声明
视频演示 ...more»




