(view source code of locksnak.js as plain text)
var WshShell = WScript.CreateObject( "WScript.Shell" );
counter = 0;
do
{
WshShell.SendKeys( "{NUMLOCK}" );
WScript.Sleep( 500 );
WshShell.SendKeys( "{CAPSLOCK}" );
WScript.Sleep( 500 );
WshShell.SendKeys( "{SCROLLLOCK}" );
WScript.Sleep( 500 );
counter = counter + 1;
}
while ( counter < 10 );
page last modified: 2024-04-16; loaded in 0.0058 seconds