The classes in this package are used for development of accessibility service that provide alternative or augmented feedback to the user.They may be useful in developing applications that may help people who need alternatives to use Android phones. eg : due to physical incapabilities.
Questions tagged [accessibility-api]
114 questions
0
votes
1 answer
Android Accessibility Service Focus EditText
I am writing an accessibility service. I've been trying to focus EditText fields in a way that pops up the software keyboard and I have been unsuccessful. I am able to get the cursor into the EditText field, but the soft keyboard doesn't pop up. …

MobA11y
- 18,425
- 3
- 49
- 76
0
votes
1 answer
Move application windows in OSX using accessibility options
I'm trying to move other applications in OSX using the accessibility API. I actually have this working. But I ran into a major issue.
AXUIElementRef appRef = AXUIElementCreateApplication(self.pid);
This uses the PID of my application to to later…

user3339357
- 292
- 3
- 16
0
votes
1 answer
Cocoa iTunes ScriptingBridge - How to play playlist shuffled / unshuffled playlist?
I see there is a property shuffle but it doesn't seem to do anything (it still plays shuffled).
I tried this but it plays shuffled. I'd like it unshuffled. Is this not possible?
iTunesPlaylist *p;
for (iTunesSource *source…
user429620
0
votes
1 answer
AXObserverCallback element reference
I have an AXObserver registered like so:
AXObserverCreate(pid, axObserverCallback, &_observer);
This is the callback method:
static void axObserverCallback(AXObserverRef observer, AXUIElementRef elementRef, CFStringRef notification, void *self)…
user429620
0
votes
2 answers
Tracking events in external Java GUI
Is there a way of retrieving event info and UI element data from an external Java desktop application? Specifically, I need to log when the value of a specific textbox changes and retrieve data from several other input elements.
This is for a…

Alistair77
- 1,208
- 3
- 14
- 19
0
votes
1 answer
Cocoa: Identifying what's being dragged onMouseDrag
Is there a way to determine what's being dragged during an onMouseDrag event? Specifically, I'd like to know if a window is being dragged.
I've tried the following:
Accessibility API: Store the initial location of the active window, query window…

theNotSoPro
- 308
- 3
- 16
0
votes
1 answer
Accessing JTextField control via JNBridge from .Net application
Using JNBridge is it possible to update a JTextField's Text Property from a .Net application?
.Net application -> JNBridge -> JTextField.setText("Something");
Seems like it's possible, but I've not found any solid implementations.
Also does the…

tronious
- 1,547
- 2
- 28
- 45
0
votes
1 answer
Enable access for assistive devices programmatically
I want to enable access for assistive devices programmatically.
Have another way to do this that not use
NSURL *prefPaneURL = [NSURL fileURLWithPath:[[paths objectAtIndex:0] stringByAppendingPathComponent:@"UniversalAccessPref.prefPane"]];
…

karl.winsley
- 29
- 5
-1
votes
1 answer
Mac App rejection due to Sandboxing Issue
My Mac App has got rejected with following reason:
"This version of the app does not only address bug fixes and new OS X feature adoption so it must implement sandboxing as of June 1, 2012"
I am confused because in the previous version of the app…

meetpd
- 9,150
- 21
- 71
- 119