Created
April 1, 2014 04:57
-
-
Save bklimt/9907965 to your computer and use it in GitHub Desktop.
How to move the Android emulator window back onto the screen.
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
tell application "System Events" | |
repeat with theProcess in (every process) | |
if name of theProcess is "emulator64-arm" then | |
set the position of (every window of theProcess) to {0, 0} | |
end if | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment