automatically say yes to "you placed a large amount of text on the clipboard.Do you want this text to be available to other applications after you quit Word"

10,440

Solution 1

ClickOff is just terrific.

when the windows pops up the next time, hover the mouse over the button you want to press (Yes) and press CTRL + ALT + D to add this action to the list of warnings you want to intercept, from now on this warning won't bother you anymore.

alt text

alt text

ClickOff is freeware.

Solution 2

This AutoHotkey script will do the trick

While 1
    {

    WinWait, Microsoft Office Word, You placed a large amount of text on the Clipboard
    WinActivate
    ControlClick Button1

    }

Button1 is the control name for the "Yes" button.

Share:
10,440

Related videos on Youtube

Admin
Author by

Admin

Updated on September 17, 2022

Comments

  • Admin
    Admin over 1 year

    when closing word after copying a large amount of text I get message "you placed a large amount of text on the clipboard.Do you want this text to be available to other applications after you quit Word"

    how can I set this to always answer yes without interupting me?

    • FreeSoftwareServers
      FreeSoftwareServers almost 5 years
      If only there was an option without Third Party Tools or Macro's... I do tons of programming and would gladly take the "risk" of losing data vs this annoying prompt. It should be as simple as a setting in Office.... But what it should be and what it is are not the same thing.