├── .editorconfig ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── data └── TermsAndCodes.csv ├── docs ├── CNAME └── _config.yml └── scripts ├── Append PDF Language To Filename.applescript ├── Create Ad-Hoc Network.applescript ├── Finder#Ascend.applescript ├── Finder#New Text File.applescript ├── Finder#Paste Clipboard As File.applescript ├── Finder#Scroll To Top.applescript ├── Get Calendar Events.applescript ├── Get Library Handlers.applescript ├── Get Mouse Position | Identify UI Element.applescript ├── Get Selected Text.applescript ├── Hostnames.applescript ├── KM#Create Dictionary.applescript ├── KM#Get Macro Properties.applescript ├── KM#Reveal External File.applescript ├── List & Record Printer.applescript ├── Move Window Left or Right.applescript ├── Parse AppleScript Dictionary (SDEF).applescript ├── Quit All Apps.applescript ├── Quit Dock Application.applescript ├── Screen Capture.applescript ├── Terminate Processes.applescript ├── URL Handler.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── applet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ ├── URL Parser#applescript.applescript │ ├── URL Parser#km.applescript │ └── main.scpt │ ├── applet.icns │ ├── applet.rsrc │ └── description.rtfd │ └── TXT.rtf ├── iTunes#Download Album Artwork.applescript └── lib ├── +arrays.applescript ├── +class.applescript ├── +crypto.applescript ├── +date.applescript ├── +files.applescript ├── +maths.applescript ├── +regex.applescript ├── +strings.applescript ├── +utils.applescript ├── load.applescript └── load.scpt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | applescript.chri.sk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/_config.yml -------------------------------------------------------------------------------- /data/TermsAndCodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/data/TermsAndCodes.csv -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | applescript.chri.sk -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /scripts/Append PDF Language To Filename.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Append PDF Language To Filename.applescript -------------------------------------------------------------------------------- /scripts/Create Ad-Hoc Network.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Create Ad-Hoc Network.applescript -------------------------------------------------------------------------------- /scripts/Finder#Ascend.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Finder#Ascend.applescript -------------------------------------------------------------------------------- /scripts/Finder#New Text File.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Finder#New Text File.applescript -------------------------------------------------------------------------------- /scripts/Finder#Paste Clipboard As File.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Finder#Paste Clipboard As File.applescript -------------------------------------------------------------------------------- /scripts/Finder#Scroll To Top.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Finder#Scroll To Top.applescript -------------------------------------------------------------------------------- /scripts/Get Calendar Events.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Get Calendar Events.applescript -------------------------------------------------------------------------------- /scripts/Get Library Handlers.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Get Library Handlers.applescript -------------------------------------------------------------------------------- /scripts/Get Mouse Position | Identify UI Element.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Get Mouse Position | Identify UI Element.applescript -------------------------------------------------------------------------------- /scripts/Get Selected Text.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Get Selected Text.applescript -------------------------------------------------------------------------------- /scripts/Hostnames.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Hostnames.applescript -------------------------------------------------------------------------------- /scripts/KM#Create Dictionary.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/KM#Create Dictionary.applescript -------------------------------------------------------------------------------- /scripts/KM#Get Macro Properties.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/KM#Get Macro Properties.applescript -------------------------------------------------------------------------------- /scripts/KM#Reveal External File.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/KM#Reveal External File.applescript -------------------------------------------------------------------------------- /scripts/List & Record Printer.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/List & Record Printer.applescript -------------------------------------------------------------------------------- /scripts/Move Window Left or Right.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Move Window Left or Right.applescript -------------------------------------------------------------------------------- /scripts/Parse AppleScript Dictionary (SDEF).applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Parse AppleScript Dictionary (SDEF).applescript -------------------------------------------------------------------------------- /scripts/Quit All Apps.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Quit All Apps.applescript -------------------------------------------------------------------------------- /scripts/Quit Dock Application.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Quit Dock Application.applescript -------------------------------------------------------------------------------- /scripts/Screen Capture.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Screen Capture.applescript -------------------------------------------------------------------------------- /scripts/Terminate Processes.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/Terminate Processes.applescript -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/Info.plist -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/Resources/Scripts/URL Parser#applescript.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/Resources/Scripts/URL Parser#applescript.applescript -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/Resources/Scripts/URL Parser#km.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/Resources/Scripts/URL Parser#km.applescript -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /scripts/URL Handler.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/URL Handler.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /scripts/iTunes#Download Album Artwork.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/iTunes#Download Album Artwork.applescript -------------------------------------------------------------------------------- /scripts/lib/+arrays.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+arrays.applescript -------------------------------------------------------------------------------- /scripts/lib/+class.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+class.applescript -------------------------------------------------------------------------------- /scripts/lib/+crypto.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+crypto.applescript -------------------------------------------------------------------------------- /scripts/lib/+date.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+date.applescript -------------------------------------------------------------------------------- /scripts/lib/+files.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+files.applescript -------------------------------------------------------------------------------- /scripts/lib/+maths.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+maths.applescript -------------------------------------------------------------------------------- /scripts/lib/+regex.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+regex.applescript -------------------------------------------------------------------------------- /scripts/lib/+strings.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+strings.applescript -------------------------------------------------------------------------------- /scripts/lib/+utils.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/+utils.applescript -------------------------------------------------------------------------------- /scripts/lib/load.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/load.applescript -------------------------------------------------------------------------------- /scripts/lib/load.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristoferK/AppleScriptive/HEAD/scripts/lib/load.scpt --------------------------------------------------------------------------------