Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
3k views

How can I use Cocoa's Accessibility API to detect that a window is brought to front?

I'm using the Accessibility API to detect when a certain application opens windows, closes windows, when the windows are moved or resized, or made main and/or focused. However the client app seems to ...
3
votes
3answers
898 views

Enable access for assistive device programmatically

I want to enable Access for assistive devices in System Preferences programmatically. But Problem is that my application is not running as root user and i do not want my application to be as root ...
2
votes
1answer
54 views

Accessibility API: AXWebArea children elements (or HTML source)

I need to get information from the third-party application using Cocoa Accessibility API. The third-party application uses WebView to show its user interface (AXWebArea role). This AXUIElement has no ...
2
votes
2answers
1k views

Is there an iPhone API that allows me to use VoiceOver directly in my app?

I'd like to allow a user to press a button directly from my app and read what's on the screen using VoiceOver. Right now, my only option is bundling recordings of each page and just playing them when ...
1
vote
0answers
24 views

Cocoa Accessibility API consuming mouse clicks

I have encountered a weird problem with one of my OS X apps. The app uses AXAPI to create event taps and to monitor keyboard and mouse events. Some users with OS 10.6-10.7 report that when the app is ...
1
vote
1answer
348 views

Getting Window Number through OSX Accessibility API

I am working on an application that moves windows of third party applications around on the screen. To get an overview of all currently open windows, I use ...
1
vote
1answer
395 views

Android: How do you check if a particular AccessibilityService is enabled

I've written an android app that requires the use of the AccessibilityService. I know how to check to see if Accessibility is enabled or disabled on the phone, but I cannot work out a way to determine ...
1
vote
3answers
533 views

How to get another application window's title, position and size in Mac OS without Accessibility API?

How can I get window's title, position and size if it does not support Accessibility API? Accessibility Inspector does not see it at all. Say, it's a xterm window in X11.app ...
1
vote
1answer
448 views

Cocoa accessibility API, can I click a window in the background without activating it?

I've been searching forever for a solution to this, so I thought I'd seek out the brainpower of greater minds than mine. I'm developing a Cocoa app that uses the Accessibility API to manipulate ...
0
votes
1answer
35 views

Accessibility API don´t works turning on sandboxing

My Mac App uses accessibility API to move an resize window (of other apps). I would like to submit my app to the MAS (Mac App Store). I have read that to submit an app to the MAS is mandatory to ...
0
votes
1answer
31 views

Window resizable - kAXGrowAreaAttribute always return NULL

In my app I want to check if windows from others apps are resizable. I´m using the accessibility API to test if the window has the kAXGrowAreaAttribute attribute (if NULL is not resizable) as Peter ...
0
votes
0answers
49 views

iOS: Read state of AssistiveTouch feature

I'm looking for a way to determine the state of the "AssistiveTouch" accessibility feature in iOS5. I need some kind of function to checked whether it is enabled or not - any ideas? Couldn't find ...
0
votes
0answers
24 views

How to get representedFilename property from AXWindow (Accessibility API)

A NSWindow object has a representedFilename property which I would like to access via another application. I'm able to access the window name of another application by using the Accessibility API via ...
0
votes
0answers
70 views

System-wide recognition of scroll events on Mac OSX and setting focus to a different window

I'm registering for global mouse wheel events in my cocoa application. My goal is to have some kind of background application to be able to focus a window of another application when the user scrolls ...
0
votes
1answer
201 views

Using Accessibility API to find out the size and the origin for the Browser Window in a NPAPI plugin

I've been making a plugin for browsers (Safari, Chrome, firefox) in MacOSX What I try to do is using Accessibility API to find out the size and the origin for the Browser Window in my NPAPI plugin. ...