**This is an old revision of the document!** ----
===== About the script ====== * Purpose : Load multiple scripts in the right order. * Author : Jappie Toutenhoofd (https://plus.google.com/+JappieToutenhoofd) * Link : https://plus.google.com/+JappieToutenhoofd/posts/ ====== Script code ====== ======= Roll-Clock-create ======= <code> function delayedLoad(scrpt) {var exist = LL.getScriptByName("APIcomm"); if (exist == null) { alert( scrpt + " script does not exist."); return; } setTimeout(LL.runScript(scrpt, null), 100); d += 400; } // initial delay var d = 800; delayedLoad("APIcomm"); delayedLoad("OWM-load"); </code>