Wednesday 8 May 2013

How to make your own auto tab

If you have a huge TV screen for monitor and you want to make it rotate i know there a lot of software that you can use it to rotate here i will show you to make your own.
you use VBS and BAT programming first you will create a script to rotate use vbs programming and use key press to control ALT+Tab and create BAT to call your vbs in loop.
VBS
auto.vbs

set wshshell = wscript.CreateObject("wscript.shell") """"call windows shell
wscript.sleep (10000) """"Set your time 10000 = to 10 second
WshShell.SendKeys "%{TAB}" """"""Set you Key press % = ALT and TAB
create a folder and save this script in


Now create BAT
call.bat

echo off         ::remove command
title AutoTab ::title name
color f9         ::Set color
MODE CON: COLS=50 LINES=15     ::Set frame size
echo.
echo.
echo.
echo.
echo ==================================================
echo              Welcome to <YOUR AUTOTAB>
echo                Your Time: 10 Second
echo    Note: Close this windows to stop auto tab
echo ==================================================

:loopstart     ::define loop
auto.vbs      ::call auto.bs

goto loopstart    ::set loop

If you want to make it more friendly i added title name, frame size, and color
save in the same folder. you need to run bat file to rotate.

Ta!! :)


No comments:

Post a Comment