-
-
Save seuros/8397005 to your computer and use it in GitHub Desktop.
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. | |
100.times 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+1}") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment