Skip to content

Cloudxtreme/AppleScriptUtils

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AppleScriptUtils Project

This is a collection of AppleScript utilities I've developed.

They mostly involve using the "say" command, though I have other utlities I'll port over at some time that can run other types of AppleScript commands as well.

speak Methods

The AppleScriptUtils object has speak methods that work like this:

AppleScriptUtils.speak("Hello, Al")
AppleScriptUtils.speak("Hello, world", VICKI)

exec Methods

I just added two exec methods that can be invoked like this:

val command = """display notification "Hello, world" sound name "Purr" """
AppleScriptUtils.exec(command) 

and this:

val cmd = Seq(
    "tell app \"iTunes\"", 
    "activate",
    "set sound volume to 40", 
    "set EQ enabled to true",
    "play",
    "end tell")
AppleScriptUtils.exec(cmd)

~ Alvin Alexander http://alvinalexander.com

About

A small collection of AppleScript utilities.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Scala 100.0%