关于Flex取得当前系统总内存
小弟刚接触flex不久,遇到些问题,请问下各位,Flex或者AIR可以取得当前系统的总内存吗?还有操作系统已剩余的内存,如何取得?
谢谢LS,totalMemory是指dobe® Flash® Player 或 Adobe® AIR™占用的内存吧,我想得到操作系统的总内存。
好像可以通过调用dos命令来得到的,正在试
找到了,调用dos命令可以获得,使用flash.desktop.NativeProcess类和NativeProcessStartupInfo类来实现,如下:
public function startCmdGetOSProcess():void {
var arg:Vector.<String> = new Vector.<String>;
arg.push("OS");
arg.push("get");
arg.push("FreePhysicalMemory,");
arg.push("FreeVirtualMemory,");
arg.push("Name,");
arg.push("ServicePackMajorVersion,");
arg.push("TotalVirtualMemorySize,");
arg.push("TotalVisibleMemorySize");
arg.push("/format:list");
var realPath:String = "C:\\Windows\\System32\\wbem\\wmic.exe" ;
startCommonProcess(arg,realPath,onCmdStandardOutputOSData);
}
public function startCommonProcess(arg:Vector.<String>,realPath:String,method:Function):void{
npInfo = new NativeProcessStartupInfo();
npInfo.executable = new File(realPath);
npInfo.arguments = arg;
nativeProcess.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, method
相关问答:
我这里有2M的XML数据返回到FLEX,页面卡了6~30秒不等,
想做个分页:
1.固定分页,就是像一般网页样可以点上页下页输入指定页。
2.隐式分页,当AdvancedDataGrid的数据有几万行的时候我只显 ......
[Bindable]
[Embed(source="../assets/add-row.gif")]
private var vcls:Class;
private function createcompletehandler(event:Event):void{
var img:Image=new Image();
img.sou ......
自定义组件在component目录下。自定义组件代码如下:
<?xml version="1.0" encoding="utf-8"?>
<mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" layout="verti ......
网上有很多Flex屏蔽右键,但是我就是看不懂,也能不出来,谢谢各位朋友帮帮忙,万分感谢,
希望代码上写一下注解,我也想知道原理是什么,感谢
怎么没有高手过来帮帮忙呀,万分感谢呀
你好,我照着这个做了
2 ......
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" fontSize="12">
......