Serence Inc.
Copyright © 2002-2007 Serence Inc.
support@serence.com
http://www.klipfolio.com/
Memory Monitor
Gkdb21wDIv8GheoiPf2Xq6OUV2uTXsRxCiP2p8nhhJhM2GWbcj8gDkPLW2A+AGiUdHfmZzBPRNlP1Cx9GBTeGwX1Y04KS3RxajCYArvYxZTR4SmuITpwYNSnm1fpO4OahekihnRf86XCWBxbG/dxLbBwy8/U43enn+aaaQg16ZM=
3.3
mem-monitor-234232
2008.02.27
Watch your system's memory usage in KlipFolio in real time.
memory system ram monitor
http://www.klipfolio.com
http://static.klipfolio.com/static/klips_serence/memory-monitor-3/mem-monitor_icon.png
http://static.klipfolio.com/static/klips_serence/memory-monitor-3/mem-monitor_banner.gif
http://static.klipfolio.com/static/klips_serence/memory-monitor-3/memory-monitor.klip
4.0
extended
525600
true
--
--
Getting Memory Usage...
1" +
"" + g_url + Math.round (mempct / 2.5) + ".png" +
"This Klip displays your current system memory usage as a percentage of total physical memory available." +
"" + usedkbytes + " KB" +
"" + freekbytes + " KB" +
"";
Engines.KlipFood.process (itemstr);
Items.B = mempct + "%";
}
}
return true;
}
function onRefresh ()
{
if (KFVersionOutOfDate ()) return false;
var success = getMemData();
// Make sure the user can't delete or dim (visit) the webcam image
if(Items.length)
{
Items[0].canvisit = false;
Items[0].candelete = false;
}
return success;
}
function KFVersionOutOfDate ()
{
// check to see if this version of KlipFolio is out of date
if (KlipFolio == null || KlipFolio.build <= 5892)
{
var introText =
"" +
"" +
"KlipFolio verison 4 is required to run this Klip. Click here to download the latest version." +
"http://www.klipfolio.com/inkf-beta" +
"welcome_message" +
"" +
"";
var introStyle =
"introitem {type:item; definition: 'introtext,introlink,introiid';}" +
"introtext {itemcol:1; noterow:1; wrap:true; notelabel:false;}" +
"introlink {type:link;}" +
"introiid {key:override}";
Engines.KlipFood.stylesheet = introStyle;
Engines.KlipFood.process (introText);
Engines.KlipFood.stylesheet = "@import klip";
g_outofdate = true;
return true;
}
g_outofdate = false;
return false;
}
]]>