Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
1k views

How to access a document's HTML in Firefox using IAccessible

I can get an IAccessible object from a Firefox window using this code: Guid guid = new Guid("{618736E0-3C3D-11CF-810C-00AA00389B71}"); object obj = null; int ret = AccessibleObjectFromWindow(hWnd, ...
1
vote
1answer
66 views

Obtaining IAccessible2 interface for Firefox / Thunderbird window - QueryService always returns E_INVALIDARG

I am trying out accessing the information in (Windows only) Firefox / Thunderbird using the IAccessible2 API: http://www.linuxfoundation.org/collaborate/workgroups/accessibility/iaccessible2 However ...
1
vote
0answers
63 views

Capture windows AccessibleObject focus

it's possible capture when user click on Windows AccessibleObject? I would like to have a listener that show me a event when user click on accessibleObject of one application. It's possible?
0
votes
0answers
34 views

To set screen reader to read a particular title in c#

I am developing an addon for IE in c#. While my addon is performing its function i don want anyone to read/navigate the page. Since its aimed at the visually handicapped I would like to set a ...
0
votes
1answer
108 views

Get caret position using Active Accessibility (MSAA)

Can anyone give an example of using the MSAA in order to get the caret position (text insertion point and not the cursor). MSDN on MSAA Thanks for any help, Momico
0
votes
1answer
28 views

Unable to recognise the properties of a third party grid contorl using IAccessible interface

I have a grid control in my language which needs to be recognised as a grid (or table) control in order to get its all properties, when I'm using accexplorer32, it's recognising the grid as a valid ...
0
votes
1answer
369 views

Get text selection with IAccessible

I tried to find an example for that, but I failed. Can someone tell me what method to use to get the current text selection. I know it's possible in .NET 4.. but I want to make it using winapi so I ...
0
votes
1answer
488 views

Accessing Mozilla's ISimpleDOMNode by using IAccessible

I have the following code: IAccessible *pAccessible = NULL; IServiceProvider *pServProv = NULL; AccessibleObjectFromWindow((HWND)0x0025093A, OBJID_CLIENT, IID_IAccessible, (void**)&pAccessible); ...
0
votes
1answer
206 views

MSAA COM-based?

I'm wondering if MSAA is COM-based, then one should be able to use CreateObject("Accessibility") to create an instance and call its methods. I had no success doing that. I have "OLEACC.DLL" in ...