A method of halting script execution by X milliseconds. For example:
js code:
function Two()
{
PartOne();
>>> MsgPlus.Pause(500);<<<
PartTwo();
}
...could be used instead of...
js code:
function Two()
{
PartOne();
MsgPlus.AddTimer("Two", 500);
}
function OnEvent_Timer(TimerId)
{
if (TimerId === "Two")
{
PartTwo();
}
}