Voiceover and wx.BitmapButton

Hi all,

I’m trying to make my application accessible. I’ve managed to get it into a fairly good state however I’m running into an issue with wx.BitmapButton.

When I defined a wx.BitmapButton like:

bitmap_button = wx.BitmapButton(

self, -1, bitmap_button_image,

name=“BITMAP BUTTON”,

style=wx.NO_BORDER)

The text “BITMAP BUTTON” is never spoken when Voiceover is enabled and it is brought into focus. Any suggestions on how to enable it?

Thanks,

-R

I don’t know what voiceover is or how it works, but I detect hovering in one GUI with by Binding an event handler with wx.EVT_MOTION to the widget.

···

On Thursday, September 4, 2014 2:26:40 PM UTC-7, Rish wrote:

Hi all,

I’m trying to make my application accessible. I’ve managed to get it into a fairly good state however I’m running into an issue with wx.BitmapButton.

When I defined a wx.BitmapButton like:

bitmap_button = wx.BitmapButton(

self, -1, bitmap_button_image,

name=“BITMAP BUTTON”,

style=wx.NO_BORDER)

The text “BITMAP BUTTON” is never spoken when Voiceover is enabled and it is brought into focus. Any suggestions on how to enable it?

Thanks,

-R