Skip to content

Commit

Permalink
Fixed end-of-line
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcc007 committed Jul 17, 2019
1 parent 37eadce commit 481298b
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion lib/resources/script/sim_orientation.scpt
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

0 comments on commit 481298b

Please sign in to comment.