Hi,
the following originates from TiddlyDesktop, therefore is pretty old
code - but still does work with a systemConfig tag alone:
/***
!Bug Fixes / Core Changes
***/
/*{{{*/
//Alert errors in systemConfigs if messageArea not yet rendered
function checkDisplay(obj) {
var oldFunc = obj['displayMessage'];
obj['displayMessage'] = function(text, linkText) {
oldFunc.apply(this, arguments);
//remove the message after 6 secs
setTimeout(clearMessage,6000);
}
};
checkDisplay(this);
/*}}}*/
Regards,
W.