2

I'm trying to select content control through js select() function - docs - but I'm always getting Access Denied error:

Error: 
{
    "name": "OfficeExtension.Error",
    "code": "AccessDenied",
    "message": "AccessDenied",
    "traceMessages": [],
    "debugInfo": 
    {
        "errorLocation":"ContentControl.select"
    },
    "stack":"AccessDenied: AccessDenied\n   at Anonymous function (https://appsforoffice.microsoft.com/lib/1.1/hosted/word-win32-16.00.js:19:150094)\n   at yi (https://appsforoffice.microsoft.com/lib/1.1/hosted/word-win32-16.00.js:19:163912)\n   at st (https://appsforoffice.microsoft.com/lib/1.1/hosted/word-win32-16.00.js:19:163999)\n   at d (https://appsforoffice.microsoft.com/lib/1.1/hosted/word-win32-16.00.js:19:163819)\n   at c (https://appsforoffice.microsoft.com/lib/1.1/hosted/word-win32-16.00.js:19:162405)"
}
Debug info: {"errorLocation":"ContentControl.select"}

Also body.getHtml() and body.getOoxml() returns the same Access Denied error.

Code snippet:

// Run a batch operation against the Word object model.
Word.run(function (context) {

    // Create a proxy object for the content controls collection.
    var contentControls = context.document.contentControls;

    // Queue a command to load the id property for all of the content controls. 
    context.load(contentControls, 'id');

    // Synchronize the document state by executing the queued-up commands, 
    // and return a promise to indicate task completion.
    return context.sync().then(function () {
        if (contentControls.items.length === 0) {
            console.log('No content control found.');
        }
        else {
            // Queue a command to select the first content control.
            contentControls.items[0].select();

            // Synchronize the document state by executing the queued-up commands, 
            // and return a promise to indicate task completion.
            return context.sync()
                .then(function () {
                    console.log('Selected the first content control.');
            });
        }
    });  
})
.catch(function (error) {
    console.log('Error: ' + JSON.stringify(error));
    if (error instanceof OfficeExtension.Error) {
        console.log('Debug info: ' + JSON.stringify(error.debugInfo));
    }
});

Firstly I thought it might be something wrong with my code but I've also tried snipper-explorer and the same problem appeared. (tried hosting manifest & app both locally and over the Internet)

Someone reported the same issue in github - github.com/OfficeDev/office-js-snippet-explorer/issues/13 - but solution with changing IE security options didn't solve my case.

My Word version - 16.0.4266.1001

kamilz
  • 168
  • 1
  • 12

1 Answers1

0

Kamilz, you are in a quite old build. I strongly suggest you to update your product (goto file->update or follow the instructions here). Right now the latest build is 16.0.7870.2024. I just ran your code exactly as in your example and was successful, so this is mostly an outdated build issue. That said, your scenario can be summarized to 2 lines of code, and just 1 trip to the host, you should always try to optimize this, specially if you want your code to be optimal for other platforms. Check this out:

 Word.run(function (context) { 
        context.document.contentControls.getFirstOrNullObject().select();
        return context.sync();

    })
ok that should do exactly the same as your code above. hope this helps!
Juan Balmori
  • 4,898
  • 1
  • 8
  • 17