https://bugs.documentfoundation.org/show_bug.cgi?id=170796
Michael <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #9 from Michael <[email protected]> --- After another try, I have fixed the problem with AccessibleContext. In this line of code, I replaced both mentions of AccessibleContext with getProperty("XAccessible") oWindow = Doc.CurrentController.ComponentWindow posw = FindAccessibleRoot(Window.AccessibleContext).AccessibleContext.LocationOnScreen It kept failing. However, when I replaced just the first mention of AccessibleContext with getProperty("XAccessible") it worked. oPosw = FindAccessibleRoot(oWindow.getProperty("XAccessible")).AccessibleContext.LocationOnScreen There are other mentions of AccessibleContext in other macros, but I now have them all working. I'm sorry to be a bother, thank you for your help. -- You are receiving this mail because: You are the assignee for the bug.
