Mac::Glue Feature Addition
One of the features I never got around to in Mac::Glue was explicit support for "tell"ing an object.
In AppleScript, you normally do a tell app "Foo" to open something, and in Mac::Glue it's $foo->open($something). Similarly, you can in AppleScript do tell app "Foo" to tell something to do_something. In Mac::Glue there's no real analogue to this. Sometimes you can do $something->do_something(), but sometimes you can't.
So I've got some basic support for a $something->tell->do_something(). It seems to be working well, but I need some more testing and cleanup. And then my first CPAN release in ... a few years now, I guess.
Leave a comment