Re: Adventures in calling Atspi from JavaScript

2012-07-25 Thread Alejandro Leiva
2012/7/24 Joseph Scheuhammer > Mike wrote: > >> Hi Joseph, >> >> 1. Registering 'object:text-caret-moved' always results in an error. >>> >>> The actual error is garbled, containing non-printable characters. Here >>> is what I get: >>> >>> > Window manager warning: Log level 16: Atspi: Adding ma

Re: Adventures in calling Atspi from JavaScript

2012-07-24 Thread Piñeiro
Replying just to have this mail on archives. It seems that if you CC the mailing list, it is not saved at https://mail.gnome.org/archives/gnome-accessibility-list On 07/18/2012 06:03 PM, Joseph Scheuhammer wrote: > Hi API, > > Thanks for your input. > >> Askingh all this but in a different way, is

Re: Adventures in calling Atspi from JavaScript

2012-07-24 Thread Joseph Scheuhammer
Mike wrote: Hi Joseph, 1. Registering 'object:text-caret-moved' always results in an error. The actual error is garbled, containing non-printable characters. Here is what I get: > Window manager warning: Log level 16: Atspi: Adding match: Interface name > 'org.a11y.atspi.Event.object'

Re: Adventures in calling Atspi from JavaScript

2012-07-18 Thread Joseph Scheuhammer
Hi Mike, Thanks for your suggestions -- it improved things a bit. See below. 1. Registering 'object:text-caret-moved' always results in an error. The actual error is garbled, containing non-printable characters. Here is what I get: > Window manager warning: Log level 16: Atspi: Adding matc

Re: Adventures in calling Atspi from JavaScript

2012-07-18 Thread Mike Gorse
Hi Joseph, 1. Registering 'object:text-caret-moved' always results in an error. The actual error is garbled, containing non-printable characters. Here is what I get: > Window manager warning: Log level 16: Atspi: Adding match: Interface name > 'org.a11y.atspi.Event.object' is invalid. T

Re: Adventures in calling Atspi from JavaScript

2012-07-18 Thread Joseph Scheuhammer
Ale wrote: I need to queue the events to handle it later to don't interrupt the system. I didn't notice that with accerciser. When the delay happens in my code, it feels like something is being processed synchronously where it shouldn't be. I think python programs (accerciser) get asynchron

Re: Adventures in calling Atspi from JavaScript

2012-07-18 Thread Alejandro Leiva
Hi Joseph and Alejandro, 2012/7/18 Piñeiro > On 07/17/2012 11:00 PM, Joseph Scheuhammer wrote: > > All, > > > > I've been implementing a JavaScript object for use within GNOME Shell > > that tracks the keyboard focus and the caret. I am using > > GObjectIntrospection to communicate between Java

Re: Adventures in calling Atspi from JavaScript

2012-07-18 Thread Piñeiro
On 07/17/2012 11:00 PM, Joseph Scheuhammer wrote: > All, > > I've been implementing a JavaScript object for use within GNOME Shell > that tracks the keyboard focus and the caret. I am using > GObjectIntrospection to communicate between JavaScript and AT-SPI. > Some things are working, but others ar