Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
243 views

How do I add files to targets in Xcode using rb-appscript?

I am trying to automatically add files to my Xcode project using rb-appscript. I don't have much experience with Ruby or Applescript, but two people seem to have made this work for them: ...
7
votes
4answers
2k views

Avoiding AppleScript through Ruby: rb-appscript or rubyosa?

Hello fellow Mac rubyists and AppleScript haters, For those of you that have experience with both rubyosa and rb-appscript, I'd like the hear the pros and cons of each, which one you decided to stick ...
3
votes
1answer
84 views

Ruby way of handling shell command that evokes a MacOS securityd window

I have a simple problem that I'd like to see if people here can help me with. Currently, I'm writing some test automation to handle a simple in house command line tool that dumps the contents of a ...
3
votes
1answer
263 views

How do I catch this exception in Ruby?

I'm a ruby beginner so bear with me. I am using the selenium-webdriver and rb-appscript gems to do some webscraping. The navigation to websites seems to be driven by the Net::Http object, which has a ...
1
vote
2answers
212 views

How to loop through all rows in Excel using Applescript?

I'm trying to loop through all rows in Excel and run some command on each row, but I can't figure out how! I tried initially doing that in rb-appscript (the Ruby wrapper for AppleScript) but decided ...
1
vote
2answers
96 views

Using rb-appscript to write a bulleted/numbered list in pages or textedit

I need to use rb-appscript to create a new Pages document that contains bulleted and numbered lists. Looking in to this, I see that paragraphs have a property called list_style, but I'm not familiar ...
0
votes
1answer
31 views

How can I use rb-appscript to drive Mac OS Finder's “Connect To Server” menu item

The end goal is to write an automated test in Ruby/Cucumber for connecting to a WebDAV server and testing authentication, CRUD and load/performance in Mac OS X. I'm trying to simulate user behavior ...
0
votes
1answer
139 views

ERROR while installing rb-appscript

Got a big problem installing rb-appscript. I already installed the latest Version of xCode & I'm running Lion. Hope you can help me, thanks a lot! This is the Error Message: sudo gem install ...
0
votes
0answers
47 views

How to distribute frozen binary gems with Ruby application (not Rails)

I wrote a bunch of Ruby scripts that integrate different tools to create a "workflow for academics". A number of my friends have been very interested in trying this out, however they are held back by ...
0
votes
1answer
162 views

How to get path of currently selected file in Finder with rb-appscript in OSX Lion

In OSX 10.6 I used the following code to do something to each currently selected file in Finder: app('Finder').selection.get.each do |item| url =CGI::unescape(item.URL.get) puts url ...
0
votes
1answer
89 views

How do I export PSDs as PNGs with py-appscript?

I wrote a script to export PSDs as PNGs with rb-appscript. That's fine and dandy, but I can't seem to pull it off in py-appscript. Here's the ruby code: #!/usr/bin/env ruby require 'rubygems' ...
0
votes
2answers
109 views

Segmentation fault issues (selenium-webdriver + rb-appscript)

I'm trying to automate webscraping, making use of both the selenium-webdriver and the ruby port of AppleScript rb-appscript. However, when I try to run the code I keep running into a segmentation ...
0
votes
0answers
48 views

Scripting Interarchy 10 with rb-appscript

I have a simple Ruby/appscript program (see below) that I use to drive the 'mirrorupload' function of the file transfer utility Interarchy, by Nolobe. The program works well with Interarchy 9. ...
0
votes
1answer
96 views

How Do I Activate a specific Safari Window using rb-appscript?

I can't get rb-appscript to activate a specific Safari window. It is always activating the most recently active window. (in irb, assuming rb-appscript is already installed) require 'appscript' ...
0
votes
0answers
128 views

When trying to install AppScript I get compilation errors

when trying to build appscript 0.6.1 for Ruby (so rb-appscript) for either 1.8.7 or 1.9.2 after issue (with or without sudo) gem install rb-appscript I get the following compilation errors: ld: ...
0
votes
2answers
168 views

How does one script the Keychain via rb-appscript?

I followed the docs and wrote: require 'rubygems' require 'appscript' loginKeychain = Appscript::app('Keychain Scripting').keychains['login.keychain'] userName = ...
0
votes
1answer
56 views

rb-appscript: Accessing parent reference?

Is there an easy way to find the parent element reference of a reference? For example, suppose I have the following reference: ref = app("System Events").processes["Safari"].windows[1].buttons[1] ...
0
votes
0answers
53 views

rb-appscript: Using filters with entire_contents possible?

Is there any easy way to find a reference within the entire contents a reference? For example, suppose I want to find a pop-up button in a window. I could do something like: app("System ...
0
votes
1answer
220 views

Make new document in TextMate with rb-appscript or AppleScript?

How do I make a new document in TextMate using rb-appscript or AppleScript? Here is my rb-appscript: te = app("TextMate") te.launch doc = te.make(:new => :document) But it doesn't work. Here ...
0
votes
4answers
758 views

AppleScript: I copied the Finder selection to the clipboard. Can I get the full path to the copied items?

I have one or many files and/or folders selected in the Finder. I manually copy them to the clipboard/pasteboard (⌘C). To keep things simple, let's say I just copied one single normal file. The ideal ...
0
votes
3answers
269 views

How would I write the following rb-appscript in objc-appscript?

The documentation in the appscript objc-trunk randomly uses ruby in the section called "Performance Issues". require "appscript" include Appscript desiredEmail = 'sam.brown@foo.com' p app('Address ...