-- -- AppDelegate.applescript -- DictationProgram -- -- Created by User on 22/04/2014. -- Copyright (c) 2014 RJM Programming. All rights reserved. -- script AppDelegate property parent : class "NSObject" -- IBOutlets property window : missing value on applicationWillFinishLaunching_(aNotification) -- Insert code here to initialize your application before any files are opened tell application "System Events" tell process (item 1 of (get name of processes whose frontmost is true)) click menu item "Start Dictation" of menu "Edit" of menu bar 1 end tell end tell end applicationWillFinishLaunching_ on applicationShouldTerminate_(sender) -- Insert code here to do any housekeeping before your application quits return current application's NSTerminateNow end applicationShouldTerminate_ end script