Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
989 views

What is the type of an enum whose values appear to be strings?

I am working with Apple's ScriptingBridge framework, and have generated a header file for iTunes that contains several enums like this: typedef enum { iTunesESrcLibrary = 'kLib', ...
2
votes
3answers
238 views

QuickTimeX in Applescript / Scripting Bridge

I'd like to be able to grab the metadata of the currently playing file in Quicktime X using ScriptingBridge and Ruby, so far I have the following code require 'osx/cocoa' OSX.require_framework ...
2
votes
1answer
818 views

How do I get the window id and tab number of a Terminal window using AppleScript via the ScriptingBridge?

I can open a Terminal tab using the following AppleScript: tell application "Terminal" set myTab to do script "exec sleep 1" get myTab end tell This returns a string like: tab 1 of window ...
1
vote
1answer
20 views

MacRuby ScriptingBridge loading speed

Is there a faster way to load scripting bridge applications from MacRuby? When I make the SBApplication object for Adobe InDesign it takes more than 10 seconds to load. Here's the code I've been ...
1
vote
0answers
94 views

Retrieving correct timestamp for image in Aperture

A question for the Aperture and Cocoa developers out there… I use Aperture and @Fraser Speirs' FlickrExport plugin to manage my photos and upload them to Flickr. FlickrExport sets custom tags in ...
1
vote
2answers
192 views

get a specific track in itunes via ScriptingBridge

I'm updating my OS X program to accept iTunes drops, modify the metadata in the file, then refresh (Get Info) the dropped file(s) so iTunes can update its' metadata library. I've got the drops ...
1
vote
3answers
160 views

Working with a file by pathname/URI using Finder + ScriptingBridge

I'm using the generated Finder.h headers from the sdef utility, and it appears that a lot of Finder SB methods require objects of type FinderItem to do anything meaningful with. How would I go about ...
1
vote
1answer
216 views

Using ScriptingBridge framework for communicating with Entourage

The motivation for my question is the following doc, which describes how mail.app could be integrated using ScriptingBridge: ...
1
vote
2answers
240 views

ScriptingBridge causes iTunes to relaunch after quit

I'm working on a Cocoa app that monitors what you're listening to in iTunes, and since I'm targeting Mac OS 10.5 and higher, I've decided to use Scripting Bridge. If I try to close iTunes too close ...
1
vote
1answer
259 views

How can I close a Window using the OS-X ScriptingBridge framework, from Perl?

Problem... Since MacPerl is no longer supported on 64bit perl, I am trying alternative frameworks to control Terminal.app. I am trying the ScriptingBridge, but have run into a problem passing an ...
0
votes
1answer
64 views

Using ScriptingBridge and Python, what properties can I get from the track currently playing?

I'm using this example as a basis and would love to retrieve a bit more information about the current track. For instance, what the current time of the track is (where the "playhead" is) and what the ...
0
votes
0answers
86 views

Getting Finder current path using Obj-C without ScriptingBridge

I'm current developing an app that requires the current path of the frontmost Finder window. I've managed to do this pretty well using ScriptingBridge as proposed by the following thread: ...
0
votes
2answers
131 views

scripting bridge header files

how can I generate scripting bridge files at runtime? I want to use scripting bridge to quit an appliction, but that application is not known at compile time.
0
votes
1answer
320 views

Objective-C Scripting Bridge and iTunes

Hi i need a little help i want to include 2 buttons on my Mac App which will trigger 2 actions, 1 will trigger the iTunes shuffle feature and set it to YES but if it is all ready set to YES then it ...
0
votes
1answer
67 views

Expressing a range (or slice) with ScriptingBridge

I'm trying to express a slice ("thru in AppleScript") in Objective-C using Scripting Bridge. The example code is making a selection in iWorks Pages. The AppleScript code looks like this tell ...
0
votes
1answer
397 views

Simple Tutorial to Create a Scriptable Cocoa Application (Scripting Bridge)

Can anyone point me to a really simple hello world type of application that introduces ScriptingBridge? Something that takes you step by step to creating a 1 class - 1 method project that can be ...
0
votes
1answer
199 views

SBApplication : how to send raw data

I woudl like to send raw data (a void*) using SBApplication sendEvent Unfortunaltly I've found no documentation about this. Do you have any idea to achieve this? Thanks in advance for yoru help, ...
0
votes
1answer
368 views

Restore Trash Item using ScriptingBridge in Mac OS X via PyObjC

I'm trying to figure out a way to restore (Put Back) Trash Item using ScriptingBridge via PyObjC. There isn't enough documentation here from AppKit import NSURL from ScriptingBridge import ...
0
votes
3answers
337 views

ScriptingBridge Finder POSIX path

is it possible to get the POSIX path or target to the frontmost window using the Scripting Bridge framework? I'm using FinderApplication *theFinder = [SBApplication ...