In a python script, I know I can execute a custom libreoffice macro in the My Macros library container by grabbing a dispatcher and executing:
dispatcher.executeDispatch(frame, "macro:///Standard.Module1.mymacro", "", 0, ())
But how do I call a local document specific macro? I presume there is a replacement term for "macro///" such as perhaps "document///" that would make the call above work but I cannot find any documentation anywhere. What is the correct format for the macro call string?