jenga wrote:
:P hello new to site just have one question how to enable alert value just like in samurize like when value drops or increases oh yes not very at jscript
i assume u mean u are not very good at javascript.
neither am, but only way i can think to get a result like that is with the use of javascript.
eg. using the snippet by jimking led to:
Code:
function ramcore1OnUpdate(Sender)
{
var ramvalue = parseInt(ramcore1.get("%PhysPercent"));
if(ramvalue>=80)// your threshold
{
alert("Ram is over 80%, lighten up Dammit"); // this will give a popup
}
}