I’ve googled high and low, but do you think I can find anything useful?
Sometimes when I record a macro the shell gets saved, but the functionality doesn’t get built in:
sub updatelinks
rem ----------------------------------------------------------------------
rem define variables
dim document as object
dim dispatcher as object
rem ----------------------------------------------------------------------
rem get access to the document
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
rem ----------------------------------------------------------------------
dispatcher.executeDispatch(document, ".uno:EditLinks", "", 0, Array())
end sub
For sure this is a bug, but I’m more interested in finishing the macro than learning how to file a bug report.