quote:
Originally posted by roflmao456
A suggestion: If you keep doing this, you might want to just create a function:
code:
function AddTimer(TimerId, Interval){
MsgPlus.AddTimer(TimerId, Interval);
}
You are better off just doing this to the whole lot
code:
with(MsgPlus){
//put your code here
AddTimer("updatepm", Time * 60000 );
//put some more code here
}
This code is also very helpful if you are using the same object quite a few times in a small area, it just saves you writing it out all the time.