Toggling between screens in desktop

Started by jm0000, April 20, 2018, 10:25:44 AM

Previous topic - Next topic

jm0000

I have a big monitor that will be used to display several statistics.  A while back, using the old version of winbatch, I wrote a script that toggled between all the screens that were open in the desktop.  This script worked great, but that was on XP.  I'm trying to re-write the same script, but  Win10 is ignoring the command to flip the screens.  What is the best way to do this  using winbatch, ruining on win10. Here is what I have:

for i =  1 to  %countvar%
counter = %counter% -1
    Display(1,"Changing windows in","%counter%")
next i
  if IsKeyDown(@SHIFT) then goto end

;SendKey( '^!{TAB}~ {ENTER}"' )     ;Sends Keystrokes
sendkey("^{ALT}{ESC}")

end

td

You might try Window key + tab to open Task View or Atl + tab to switch between open apps.   Things can get a little tricky because Windows 10 has better support for virtual desktops.

The complete list of shortcuts for Windows 10 can be found here:

https://support.microsoft.com/en-us/help/12445/windows-keyboard-shortcuts
"No one who sees a peregrine falcon fly can ever forget the beauty and thrill of that flight."
  - Dr. Tom Cade

jm0000

Thanks for your reply. I really wanted to just toggle between all the open windows, like the old program, but that has proven difficult. I rewrote it just to open specific windows, but I am having an issues opening a google chrome window. Here is what I have

:again
     If Iskeydown(@CTRL) then goto end
    Display(1,"Changing windows in","%countvar% seconds")
   winactivate("Inbox") <-- opens email
    If Iskeydown(@CTRL) then goto end
    delay(countvar)   
  winactivate("MyDoc") <-- Opens word
   If Iskeydown(@CTRL) then goto end
  delay(countvar)

;can't open an existing chrome window
ActivateIeTab("winbatch.com")  <--- How can I activate an exiting chrome tab?

:goto agiain

td

If you start "WinBatch Navigator" and press the "Windows Information" button the applet "Wininfo" starts.  Put the cursor over your Chrome window to see it's window title.   You may need to use a "partial window name" to account for the title changing based on the Website being displayed.   You can find more information on partial window names in the Consolidated WIL Help file.
"No one who sees a peregrine falcon fly can ever forget the beauty and thrill of that flight."
  - Dr. Tom Cade

jm0000

Thanks TD, the tip about the navigator helped me out. Here is the basic code. This will work. I'm going to make is more professional by using a data file to list the names of windows I would like to open.

:again

   winactivate("an adbode program") <-- just change this to the file name of any file you want to open
    If Iskeydown(@CTRL) then goto end
    delay(countvar)   
  winactivate("Am excel spreedsheet")
   If Iskeydown(@CTRL) then goto end
  delay(countvar)
       winactivate("a word doc")
   If Iskeydown(@CTRL) then goto end
  delay(countvar)




;; This will open google chrome pages.

Winactivate("WinBatch Navigator")
        If Iskeydown(@CTRL) then goto end
     delay(countvar)
Winactivate("CNN")
If Iskeydown(@CTRL) then goto end
delay(countvar)
Winactivate("Home")
If Iskeydown(@CTRL) then goto end
delay(countvar)
goto again

:end
Display(3,"END of swtab","Closing Swtab script")