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"

0

2

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?

ben

Posted 2009-12-29T17:00:16.417

Reputation:

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. – FreeSoftwareServers – 2019-05-07T05:33:41.637

Answers

2

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.

Molly7244

Posted 2009-12-29T17:00:16.417

Reputation:

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.

Snark

Posted 2009-12-29T17:00:16.417

Reputation: 30 147