Blink in HTA Posted onApril 30, 2014July 15, 2022AuthorMrNetTek In the HTML add tags <blink>THIS IS BLINKING</blink> In an onload in vbscript, javascript, body, etc. add this startBlink() Near the bottom, above the closed body tag, add this code <script type=”text/javascript”><br /><br /> function blinkIt() {<br /><br /> if (!document.all) return;<br /><br /> else {<br /><br /> for(i=0;i<document.all.tags(‘blink’).length;i++){<br /> s=document.all.tags(‘blink’)[i];<br /> s.style.visibility=(s.style.visibility==’visible’) ?’hidden’:’visible’;<br /> }<br /> }<br /> }<br /> function startBlink() {<br /> if (document.all)<br /> setInterval(“blinkIt()”,750)//1000 is the speed of the blink<br /> }<br /> </script>