forked from mmcc007/screenshots
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
on run argv my do_submenu("Simulator", "Hardware", "Orientation", item 1 of argv) return item 1 of argvend runon do_submenu(app_name, menu_name, menu_item, submenu_item) try -- bring the target application to the front tell application app_name activate end tell tell application "System Events" tell process app_name tell menu bar 1 tell menu bar item menu_name tell menu menu_name tell menu item menu_item tell menu menu_item click menu item submenu_item end tell end tell end tell end tell end tell end tell end tell return true on error error_message return false end tryend do_submenu | ||
on run argv | ||
my do_submenu("Simulator", "Hardware", "Orientation", item 1 of argv) | ||
return item 1 of argv | ||
end run | ||
|
||
on do_submenu(app_name, menu_name, menu_item, submenu_item) | ||
try | ||
-- bring the target application to the front | ||
tell application app_name | ||
activate | ||
end tell | ||
tell application "System Events" | ||
tell process app_name | ||
tell menu bar 1 | ||
tell menu bar item menu_name | ||
tell menu menu_name | ||
tell menu item menu_item | ||
tell menu menu_item | ||
click menu item submenu_item | ||
end tell | ||
end tell | ||
end tell | ||
end tell | ||
end tell | ||
end tell | ||
end tell | ||
return true | ||
on error error_message | ||
return false | ||
end try | ||
end do_submenu |