I have read tutorials that explain how to create a python macro :
- I added the folders Scripts and python to obtain this :
C:UsersMyosotisAppDataRoamingLibreOffice4userScriptspython - Then, I created the file break.py where I put a function named test :
{ Code :
from scriptforge import CreateScriptService
def test(args=None)
doc = CreateScriptService("Calc")
doc.SetValue("G3","test")
return None
}
But when I open the popup Macros Python, the folder break is empty :
I’d like to know why, or at least to know where are stored all these “Application macros”, so I can have a look at them.
I use Libre Office version 24.2.3.2 (X86_64) on Windows 10.0