diff options
author | Teddy Wing | 2018-10-08 16:35:05 +0200 |
---|---|---|
committer | Teddy Wing | 2018-10-08 16:35:30 +0200 |
commit | 8412194269fe6632fe9ec4766392d270d47f40e1 (patch) | |
tree | f48eec0d203786f78885db66775b68b4f5540590 /Word Count/AppDelegate.applescript | |
download | Word-Count-8412194269fe6632fe9ec4766392d270d47f40e1.tar.bz2 |
New AppleScript App initialised from Xcode Version 9.2 (9C40b)
Diffstat (limited to 'Word Count/AppDelegate.applescript')
-rw-r--r-- | Word Count/AppDelegate.applescript | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Word Count/AppDelegate.applescript b/Word Count/AppDelegate.applescript new file mode 100644 index 0000000..e42da45 --- /dev/null +++ b/Word Count/AppDelegate.applescript @@ -0,0 +1,24 @@ +-- +-- AppDelegate.applescript +-- Word Count +-- +-- Created by tw on 10/8/18. +-- Copyright © 2018 tw. All rights reserved. +-- + +script AppDelegate + property parent : class "NSObject" + + -- IBOutlets + property theWindow : missing value + + on applicationWillFinishLaunching_(aNotification) + -- Insert code here to initialize your application before any files are opened + 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 |