Is it possible to have a macro that triggers a menu event every n minutes? If so what would that look like?
How many n minutes would it be?
Hello,
Please look at this post → [LibO 5.1.5 on debian 8.5] writer close without asking to save, in need of an AUTOMATIC Incremental saving function
There is also an addition to that in this post → Suggeston for Location of Backup Files
I have modified the question.
@carnish Menu ‘events’ , as you state, are nothing more than uno commands. These can be used in macros themselves. Just used in another post for Base:
dispatcher.executeDispatch(oDocument, “.uno:Save”, “”, 0, args1())
which uses oDocument to save the file. Of course there is more to it than this one line. It is meant as an example of what is in a menu. You can use other code similar to this to create your own menus with macros also.
Edit: See also → https://wiki.documentfoundation.org/Development/DispatchCommands
Something similar
.