Skip to content

Instantly share code, notes, and snippets.

@bklimt
Created April 1, 2014 04:57
Show Gist options
  • Save bklimt/9907965 to your computer and use it in GitHub Desktop.
Save bklimt/9907965 to your computer and use it in GitHub Desktop.
How to move the Android emulator window back onto the screen.
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