Existe uma maneira de alterar o recurso "pegar onde você parou" do MS Word 2013?

6

Este é um recurso irritante. Examinei todas as opções, mas não vejo nenhuma opção para desativá-las. Alguma idéia?

    
por mbgsuirp 26.03.2015 / 06:29

2 respostas

8

Existe uma maneira de alterar o recurso "pegar onde você parou" do MS Word 2013?

Aviso:

As instruções abaixo contêm etapas que informam sobre como modificar o registro. No entanto, podem ocorrer sérios problemas se você modificar o registro incorretamente.

Portanto, certifique-se de seguir estas etapas cuidadosamente. Para proteção adicional, faça o backup do registro antes de modificá-lo. Em seguida, você pode restaurar o registro se ocorrer um problema.

Para obter mais informações, consulte Como fazer backup e restaurar o registro no Windows.

Desativar o pick-up de onde você parou no Word

When you close a document, Word automatically bookmarks your most recent position in the document. If you take a break from reading, when you reopen your document, you can pick up where you left off. If you are signed in to Office, Resume Reading works even if you reopen the document from a different computer or other device.

If you feel that this feature is not useful for you, then you may want to disable it.

  1. Press WindowsR combination, type Regedt32.exe in Run dialog box and press Enter to open the Registry Editor.

  2. Navigate to the following location:

    HKEY_CURRENT_USER\Software\Microsoft\Office.0\Word\Reading Locations

enter image description here

  1. Here the Reading Locations key is the culprit and is responsible for arising the tip on every start up of Office components. If you delete this key, it will help you to disable tip immediately. But as soon as you reboot the machine, the key will be written by system again and tip will start popping up. So we need to make this key read-only for everyone so that it can’t be re-written by system. To make this key read-only, right click over it and pick Permissions.

enter image description here

  1. Click on Advanced in the above shown window. Now uncheck the option “Replace all child object permission entries with inheritable permission entries from this object”.

enter image description here

  1. Click Apply followed by OK, again do the same for Permissions window. You may close the Registry Editor now, reboot to see results.

E um comentário de outro autor sobre o que precede:

I think that in a more recent version of Word, the "Replace all child object permission entries with inheritable permission entries from this object" box is unchecked by default, and you have to check "deny" Full Control to SYSTEM in the Permissions window before it will work.

Source Desativar o pick-up de onde você parou no Word

    
por 26.03.2015 / 06:46
0

Uma forma programática de descartar o painel de boas-vindas é colocar esse código em seu arquivo Normal.dotm:

    Sub AutoOpen()
        Selection.EndKey Unit:=wdStory, Extend:=wdMove
        Selection.HomeKey Unit:=wdStory, Extend:=wdMove
    End Sub

Este código move o cursor para a parte inferior do documento e, em seguida, volta para o topo.

Se você preferir não mexer com macros VBA, também colocarei esse recurso em um Add-In. Você pode configurar o suplemento para descartar o painel Bem-vindo para trás e também para forçar a abertura de documentos no modo Visão de rascunho (ou qualquer outra exibição de sua escolha); que restaura a funcionalidade que o MS removeu no Word 2013. O suplemento pode ser baixado de:      link

    
por 15.06.2017 / 07:54