On Oct 11, 2006, at 3:35 PM, has.temp3 / virgin.net wrote: > Appscript makes Ruby a serious alternative to Apple's own AppleScript > language for automating your Mac. Here's a quick example: > > require "appscript" > > AS.app('TextEdit').documents.end.make( > :new => :document, > :with_properties => {:text => "Hello World!\n"}) Could you explain what the differences are with ruby aeosa? Below is an example from the website: require 'osx/aeosa' app = OSX::AEDesc.application "Internet Explorer" app.open_docs "html/INDEX.en.html" app.activate app.quit_app http://www.fobj.com/rubyaeosa/