Hello!
I am using Collaboro and trying to send an unoCommand for when my document is loaded to go to a specific page thats being passed from the database.
postToCollabora({
'MessageId': 'Send_UNO_Command',
'Values': {
'Command': '.uno:GoToPage',
'Args': {
'Page': { 'type': 'unsigned short', 'value': pageNumber }
}
}
})
The only thing that seems to happen is a dialog box opens set to one and not even the correct page number. For example, the page number is 8 but the dialog box has it as 1.
Is there a way to get it to navigate directly to the page without opening a dialog box and to the correct page, any help would be appreciated.
I was also taking a look here:
and saw there was a JumpToSpecificPage for writer documents, but I don’t think its implemented in the collaboro repo after investigating it thoroughly. I would be willing to add it (if it’s not too complex), any help around this would be appreciated.
