从Ruby或PHP或Cocoa访问Mac应用程序 [英] Accessing Mac applications from Ruby or PHP or Cocoa

查看:130
本文介绍了从Ruby或PHP或Cocoa访问Mac应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从最好的Ruby访问几个不同的Mac OS X应用程序,但我会解决PHP。应用程序是Elgato的turbo.264和苹果的iTunes。两个都有Applescript库定义,将允许我做我想做的Applescript,但我不想这样做在Applescript。如果我不能在Ruby或PHP中做到这一点,也许我可以在目标C / Cocoa中做,并创建一些我可以从Ruby调用的包装器。

I would like to access a couple of different Mac OS X applications from preferably Ruby, but I would settle for PHP. The applications are Elgato's turbo.264 and Apple's iTunes. Both have Applescript Libraries defined that would allow me to do what I want to do from Applescript, but I don't want to do this in Applescript. If I can't do this in Ruby or PHP, perhaps I can do it in objective C / Cocoa and create some kind of wrapper that I could call from Ruby.

这是可能吗?似乎如果方法在Applescript中可用,他们应该可以在其他语言,我只是没有能够找到任何东西。

Is this even possible? It seems like if the methods are available in Applescript they should be available in other languages, I have just not been able to find anything.

推荐答案

尝试RubyOSA( http://rubyosa.rubyforge.org ),然后您可以执行此操作:

Try RubyOSA (http://rubyosa.rubyforge.org) and then you can do this:

require 'rbosa'
itunes = OSA.app('iTunes')

track = itunes.current_track
p track                     # <OSA::Itunes::FileTrack:0x1495e20>
p track.name                # "Over The Rainbow" 
p track.artist              # "Keith Jarrett" 
p track.duration            # 362.368988037109 
p track.date_added.to_s     # "2006-06-30" 
p track.enabled?            # true

# Play the selected track.
itunes.play                    

# Fade the volume.
100.times { |i| itunes.sound_volume = i; sleep 0.1 }  

# Set iChat's status message to the current track.
OSA.app('iChat').status_message = "Playing: #{track.name}"


$ b b

您可以与支持AppleScript

You can talk to any Mac OS X app that supports AppleScript

这篇关于从Ruby或PHP或Cocoa访问Mac应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆