!7 static double interval = 1; p-noconsole { ShowBigText sbt = showBigText("Smart Bot Web Count", f data, toMS(interval)); setToolTip(sbt.is, "Smart Bot's Webs"); } static S[] data() { try { S num = loadPage("http://smartbot.botcompany.de/the-big-number"); //S title = firstTwoDigits(num) + "+" + lastTwoDigits(num); S title = firstThreeDigits(num) + "+" + nextToLastDigit(num); //ret new S[] { num, num + " webs" }; ret new S[] { num, title }; } catch print short e { ret new S[] { "OFFLINE" }; } }