Is it possible to scroll in a wx.textctrl by accessing the scrollbar?

Sigh,

On latest macosx/python/wxpython the textctrl appears to be
spectacularly broken:
     a) Horizontal scrolling is broken
     b) PositionToXY(pos) is broken
     c) ShowPosition(pos) is broken

I can fix (b) by manually doing some calculations using the line lengths.

I was hoping that I might find a workaround for (c) but in the (Komodo) debugger
I can't even find the scrollbar associated with the textctrl...

Is is possible to bypass ShowPosition by somehow accessing the scrollbar?

Jerry

Sigh,

On latest macosx/python/wxpython the textctrl appears to be
spectacularly broken:
     a) Horizontal scrolling is broken
     b) PositionToXY(pos) is broken
     c) ShowPosition(pos) is broken

A clarification of "broken" would be useful.

I can fix (b) by manually doing some calculations using the line
lengths.

I was hoping that I might find a workaround for (c) but in the
(Komodo) debugger
I can't even find the scrollbar associated with the textctrl...

It probably doesn't have one - the scrollbar is provided by the native control.

Is is possible to bypass ShowPosition by somehow accessing the
scrollbar?

No.

···

On 7/5/07, Jerry LeVan <jerry.levan@gmail.com> wrote: