<div dir="ltr">Hi,<br><br>I am trying to write an extension for LibreOffice using Python3-uno. I need to access all the help texts that appear in the user interface to write it. Unfortunately, I'm having trouble with documentation when things I want to do are not related to, for example, "creating an extension that modifies documents" or "creating new windows". I found here:<div><br><a href="https://www.openoffice.org/api/docs/common/ref/com/sun/star/awt/UnoControlButtonModel.html#HelpText">https://www.openoffice.org/api/docs/common/ref/com/sun/star/awt/UnoControlButtonModel.html#HelpText</a></div><div><br>But I don't know if this is exactly what I am wanting or if I am doing it wrong, because it generates no return for me:<br></div><div><br></div><div>>>> localContext = uno.getComponentContext()<br></div><div>localContext.ServiceManager.createInstanceWithContext("com.sun.star.bridge.UnoUrlResolver", localContext)<br></div><div>>>> resolver = localContext.ServiceManager.createInstanceWithContext("com.sun.star.bridge.UnoUrlResolver", localContext)<br></div><div>>>> context = resolver.resolve("uno:socket,host=localhost,port=2002;urp;StarOffice.ComponentContext")<br></div><div><br></div><div>>>> helpt = context.ServiceManager.createInstanceWithContext('com.sun.star.awt.UnoControlButtonModel', context)</div><div>>>> helpt.HelpText<br></div><div>''</div><div>I always get an empty rope. Even with both windows open (IDLE and LibreOffice), with the mouse above a button generating a help text<br></div><div><br></div><div>Thanks!</div><div>Regards,<br>Miguel Teixeira.<br></div></div>