Created
December 20, 2013 04:45
-
-
Save mubix/8050500 to your computer and use it in GitHub Desktop.
Window Roulette
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Code loops around each of the windows | |
# that the current user has open and switches | |
# focus to each of them in rotation... 100 times. | |
(0..100).each do |x| | |
windows = client.extapi.window.enumerate | |
windows.each do |winder| | |
if winder[:title] != 'Default IME' | |
result = client.railgun.user32.SetForegroundWindow(winder[:handle]) | |
end | |
end | |
print_status("Round #{x}") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I updated the code @ https://gist.github.com/seuros/8397005
Your current code loops 101 times instead of 100.