How to paste regular text from Microsoft Onenote to Evernote












1















Using Onenote 2013 and Evernote, when I try copy pasting from Onenote to Evernote I get notes pasted as images instead of text.



One workaround is to paste into Microsoft Word, and then copy and paste to Evernote.



Is there a direct way of doing this?










share|improve this question



























    1















    Using Onenote 2013 and Evernote, when I try copy pasting from Onenote to Evernote I get notes pasted as images instead of text.



    One workaround is to paste into Microsoft Word, and then copy and paste to Evernote.



    Is there a direct way of doing this?










    share|improve this question

























      1












      1








      1








      Using Onenote 2013 and Evernote, when I try copy pasting from Onenote to Evernote I get notes pasted as images instead of text.



      One workaround is to paste into Microsoft Word, and then copy and paste to Evernote.



      Is there a direct way of doing this?










      share|improve this question














      Using Onenote 2013 and Evernote, when I try copy pasting from Onenote to Evernote I get notes pasted as images instead of text.



      One workaround is to paste into Microsoft Word, and then copy and paste to Evernote.



      Is there a direct way of doing this?







      copy-paste microsoft-onenote evernote






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 15 '16 at 2:46









      Renato ChencinskiRenato Chencinski

      315




      315






















          5 Answers
          5






          active

          oldest

          votes


















          2














          From experimentation, this works for me:



          When you copy from OneNote, use Ctrl+C. Then when you paste to Evernote, use
          Ctrl+Alt+V (don't use Ctrl+V). You will be shown options from the clipboard.

          Then simply hit Enter.



          Update: When I originally posted this, I didn't realize that I could do this because of a freeware program I had downloaded called PhraseExpress.






          share|improve this answer


























          • For me, Ctrl + Alt +V creates a new note in evernote with clipboard content. Both if I'm in an evernote window or another program.

            – Renato Chencinski
            Jan 27 '17 at 11:44



















          1














          For those suffering with this, there is a partial workaround, for pasting only text (loses formatting).



          I use an AutoHotKey script for this. Good thing is it works in any program, not only Evernote.



          Script below, adapted from this forum post.



          Autohotkey - http://autohotkey.com



          $^+v::
          Sleep, 100
          ClipSaved := ClipboardAll ;save original clipboard contents
          Clipboard = %clipboard% ;remove formatting
          Sleep, 100
          Send ^v ;send the Ctrl+V command
          Sleep, 100
          Clipboard := ClipSaved ;restore the original clipboard contents
          ClipSaved = ;clear the variable
          Return





          share|improve this answer
























          • The disadvantage is that is also removes the formatting if you are copy-pasting from/to applications like Word, where you might want to preserve the formatting ... Still, a nice solution

            – Wouter
            Dec 20 '18 at 13:09











          • Oh and, if the script doesn't work, try the minor modification here: autohotkey.com/board/topic/…

            – Wouter
            Dec 20 '18 at 13:09



















          1














          Inspired by the other answers using AutoHotkey to tackle this issue, I've created a AutoHotkey script that changes the Ctrl-C command to remove the formatting when copying text from OneNote. This avoids copy-paste of formatting/images/files from breaking in other applications.



          $^c::
          Send ^c ; Do a normal copy to clipboard
          sleep 100 ; Wait for the copy to finish
          WinGet current_application, ProcessName, A ; Get the name of the current application

          ; if the application is OneNote, and the copied content is text ...
          if ((current_application = "ONENOTE.EXE") && DllCall("IsClipboardFormatAvailable", "uint", 1)) {
          clipboard = %clipboard% ; remove the formatting
          }
          Return





          share|improve this answer































            0














            I resorted to Pasting into Notebook then CNP from Notepad to EN.



            Not smooth, but it worked :-/



            This is on the latest EN release on Win7 and OneNote 2010.






            share|improve this answer
























            • This is the same approach the OP is trying to avoid, only using Notepad as the intermediate app rather than Word, so it isn't really a solution to the question.

              – fixer1234
              Sep 8 '16 at 18:46



















            0














            I just found a third-party solution to this issue. The clipboard manager "Clipboard Fusion" has a standard "scrub" feature which allows OneNote clips to be pasted as plain text. This is a partial solution but I still needed to manually re-instate any necessary text formatting.
            I contacted technical support and they have just provided me with a macro which enables me to paste fully formatted text! I have not tested it on complex formatting (tables etc) but it certainly transfers basic fonts and styles.






            share|improve this answer



















            • 1





              Should the macro you're using be part of your answer? It's not much help without it!

              – Toby Speight
              Feb 2 '17 at 10:56











            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1089377%2fhow-to-paste-regular-text-from-microsoft-onenote-to-evernote%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            5 Answers
            5






            active

            oldest

            votes








            5 Answers
            5






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            From experimentation, this works for me:



            When you copy from OneNote, use Ctrl+C. Then when you paste to Evernote, use
            Ctrl+Alt+V (don't use Ctrl+V). You will be shown options from the clipboard.

            Then simply hit Enter.



            Update: When I originally posted this, I didn't realize that I could do this because of a freeware program I had downloaded called PhraseExpress.






            share|improve this answer


























            • For me, Ctrl + Alt +V creates a new note in evernote with clipboard content. Both if I'm in an evernote window or another program.

              – Renato Chencinski
              Jan 27 '17 at 11:44
















            2














            From experimentation, this works for me:



            When you copy from OneNote, use Ctrl+C. Then when you paste to Evernote, use
            Ctrl+Alt+V (don't use Ctrl+V). You will be shown options from the clipboard.

            Then simply hit Enter.



            Update: When I originally posted this, I didn't realize that I could do this because of a freeware program I had downloaded called PhraseExpress.






            share|improve this answer


























            • For me, Ctrl + Alt +V creates a new note in evernote with clipboard content. Both if I'm in an evernote window or another program.

              – Renato Chencinski
              Jan 27 '17 at 11:44














            2












            2








            2







            From experimentation, this works for me:



            When you copy from OneNote, use Ctrl+C. Then when you paste to Evernote, use
            Ctrl+Alt+V (don't use Ctrl+V). You will be shown options from the clipboard.

            Then simply hit Enter.



            Update: When I originally posted this, I didn't realize that I could do this because of a freeware program I had downloaded called PhraseExpress.






            share|improve this answer















            From experimentation, this works for me:



            When you copy from OneNote, use Ctrl+C. Then when you paste to Evernote, use
            Ctrl+Alt+V (don't use Ctrl+V). You will be shown options from the clipboard.

            Then simply hit Enter.



            Update: When I originally posted this, I didn't realize that I could do this because of a freeware program I had downloaded called PhraseExpress.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 23 '17 at 6:09









            Mike Decious

            31




            31










            answered Jan 26 '17 at 3:23









            Mike DeciousMike Decious

            212




            212













            • For me, Ctrl + Alt +V creates a new note in evernote with clipboard content. Both if I'm in an evernote window or another program.

              – Renato Chencinski
              Jan 27 '17 at 11:44



















            • For me, Ctrl + Alt +V creates a new note in evernote with clipboard content. Both if I'm in an evernote window or another program.

              – Renato Chencinski
              Jan 27 '17 at 11:44

















            For me, Ctrl + Alt +V creates a new note in evernote with clipboard content. Both if I'm in an evernote window or another program.

            – Renato Chencinski
            Jan 27 '17 at 11:44





            For me, Ctrl + Alt +V creates a new note in evernote with clipboard content. Both if I'm in an evernote window or another program.

            – Renato Chencinski
            Jan 27 '17 at 11:44













            1














            For those suffering with this, there is a partial workaround, for pasting only text (loses formatting).



            I use an AutoHotKey script for this. Good thing is it works in any program, not only Evernote.



            Script below, adapted from this forum post.



            Autohotkey - http://autohotkey.com



            $^+v::
            Sleep, 100
            ClipSaved := ClipboardAll ;save original clipboard contents
            Clipboard = %clipboard% ;remove formatting
            Sleep, 100
            Send ^v ;send the Ctrl+V command
            Sleep, 100
            Clipboard := ClipSaved ;restore the original clipboard contents
            ClipSaved = ;clear the variable
            Return





            share|improve this answer
























            • The disadvantage is that is also removes the formatting if you are copy-pasting from/to applications like Word, where you might want to preserve the formatting ... Still, a nice solution

              – Wouter
              Dec 20 '18 at 13:09











            • Oh and, if the script doesn't work, try the minor modification here: autohotkey.com/board/topic/…

              – Wouter
              Dec 20 '18 at 13:09
















            1














            For those suffering with this, there is a partial workaround, for pasting only text (loses formatting).



            I use an AutoHotKey script for this. Good thing is it works in any program, not only Evernote.



            Script below, adapted from this forum post.



            Autohotkey - http://autohotkey.com



            $^+v::
            Sleep, 100
            ClipSaved := ClipboardAll ;save original clipboard contents
            Clipboard = %clipboard% ;remove formatting
            Sleep, 100
            Send ^v ;send the Ctrl+V command
            Sleep, 100
            Clipboard := ClipSaved ;restore the original clipboard contents
            ClipSaved = ;clear the variable
            Return





            share|improve this answer
























            • The disadvantage is that is also removes the formatting if you are copy-pasting from/to applications like Word, where you might want to preserve the formatting ... Still, a nice solution

              – Wouter
              Dec 20 '18 at 13:09











            • Oh and, if the script doesn't work, try the minor modification here: autohotkey.com/board/topic/…

              – Wouter
              Dec 20 '18 at 13:09














            1












            1








            1







            For those suffering with this, there is a partial workaround, for pasting only text (loses formatting).



            I use an AutoHotKey script for this. Good thing is it works in any program, not only Evernote.



            Script below, adapted from this forum post.



            Autohotkey - http://autohotkey.com



            $^+v::
            Sleep, 100
            ClipSaved := ClipboardAll ;save original clipboard contents
            Clipboard = %clipboard% ;remove formatting
            Sleep, 100
            Send ^v ;send the Ctrl+V command
            Sleep, 100
            Clipboard := ClipSaved ;restore the original clipboard contents
            ClipSaved = ;clear the variable
            Return





            share|improve this answer













            For those suffering with this, there is a partial workaround, for pasting only text (loses formatting).



            I use an AutoHotKey script for this. Good thing is it works in any program, not only Evernote.



            Script below, adapted from this forum post.



            Autohotkey - http://autohotkey.com



            $^+v::
            Sleep, 100
            ClipSaved := ClipboardAll ;save original clipboard contents
            Clipboard = %clipboard% ;remove formatting
            Sleep, 100
            Send ^v ;send the Ctrl+V command
            Sleep, 100
            Clipboard := ClipSaved ;restore the original clipboard contents
            ClipSaved = ;clear the variable
            Return






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jun 15 '16 at 2:48









            Renato ChencinskiRenato Chencinski

            315




            315













            • The disadvantage is that is also removes the formatting if you are copy-pasting from/to applications like Word, where you might want to preserve the formatting ... Still, a nice solution

              – Wouter
              Dec 20 '18 at 13:09











            • Oh and, if the script doesn't work, try the minor modification here: autohotkey.com/board/topic/…

              – Wouter
              Dec 20 '18 at 13:09



















            • The disadvantage is that is also removes the formatting if you are copy-pasting from/to applications like Word, where you might want to preserve the formatting ... Still, a nice solution

              – Wouter
              Dec 20 '18 at 13:09











            • Oh and, if the script doesn't work, try the minor modification here: autohotkey.com/board/topic/…

              – Wouter
              Dec 20 '18 at 13:09

















            The disadvantage is that is also removes the formatting if you are copy-pasting from/to applications like Word, where you might want to preserve the formatting ... Still, a nice solution

            – Wouter
            Dec 20 '18 at 13:09





            The disadvantage is that is also removes the formatting if you are copy-pasting from/to applications like Word, where you might want to preserve the formatting ... Still, a nice solution

            – Wouter
            Dec 20 '18 at 13:09













            Oh and, if the script doesn't work, try the minor modification here: autohotkey.com/board/topic/…

            – Wouter
            Dec 20 '18 at 13:09





            Oh and, if the script doesn't work, try the minor modification here: autohotkey.com/board/topic/…

            – Wouter
            Dec 20 '18 at 13:09











            1














            Inspired by the other answers using AutoHotkey to tackle this issue, I've created a AutoHotkey script that changes the Ctrl-C command to remove the formatting when copying text from OneNote. This avoids copy-paste of formatting/images/files from breaking in other applications.



            $^c::
            Send ^c ; Do a normal copy to clipboard
            sleep 100 ; Wait for the copy to finish
            WinGet current_application, ProcessName, A ; Get the name of the current application

            ; if the application is OneNote, and the copied content is text ...
            if ((current_application = "ONENOTE.EXE") && DllCall("IsClipboardFormatAvailable", "uint", 1)) {
            clipboard = %clipboard% ; remove the formatting
            }
            Return





            share|improve this answer




























              1














              Inspired by the other answers using AutoHotkey to tackle this issue, I've created a AutoHotkey script that changes the Ctrl-C command to remove the formatting when copying text from OneNote. This avoids copy-paste of formatting/images/files from breaking in other applications.



              $^c::
              Send ^c ; Do a normal copy to clipboard
              sleep 100 ; Wait for the copy to finish
              WinGet current_application, ProcessName, A ; Get the name of the current application

              ; if the application is OneNote, and the copied content is text ...
              if ((current_application = "ONENOTE.EXE") && DllCall("IsClipboardFormatAvailable", "uint", 1)) {
              clipboard = %clipboard% ; remove the formatting
              }
              Return





              share|improve this answer


























                1












                1








                1







                Inspired by the other answers using AutoHotkey to tackle this issue, I've created a AutoHotkey script that changes the Ctrl-C command to remove the formatting when copying text from OneNote. This avoids copy-paste of formatting/images/files from breaking in other applications.



                $^c::
                Send ^c ; Do a normal copy to clipboard
                sleep 100 ; Wait for the copy to finish
                WinGet current_application, ProcessName, A ; Get the name of the current application

                ; if the application is OneNote, and the copied content is text ...
                if ((current_application = "ONENOTE.EXE") && DllCall("IsClipboardFormatAvailable", "uint", 1)) {
                clipboard = %clipboard% ; remove the formatting
                }
                Return





                share|improve this answer













                Inspired by the other answers using AutoHotkey to tackle this issue, I've created a AutoHotkey script that changes the Ctrl-C command to remove the formatting when copying text from OneNote. This avoids copy-paste of formatting/images/files from breaking in other applications.



                $^c::
                Send ^c ; Do a normal copy to clipboard
                sleep 100 ; Wait for the copy to finish
                WinGet current_application, ProcessName, A ; Get the name of the current application

                ; if the application is OneNote, and the copied content is text ...
                if ((current_application = "ONENOTE.EXE") && DllCall("IsClipboardFormatAvailable", "uint", 1)) {
                clipboard = %clipboard% ; remove the formatting
                }
                Return






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 20 '18 at 13:57









                WouterWouter

                1,077926




                1,077926























                    0














                    I resorted to Pasting into Notebook then CNP from Notepad to EN.



                    Not smooth, but it worked :-/



                    This is on the latest EN release on Win7 and OneNote 2010.






                    share|improve this answer
























                    • This is the same approach the OP is trying to avoid, only using Notepad as the intermediate app rather than Word, so it isn't really a solution to the question.

                      – fixer1234
                      Sep 8 '16 at 18:46
















                    0














                    I resorted to Pasting into Notebook then CNP from Notepad to EN.



                    Not smooth, but it worked :-/



                    This is on the latest EN release on Win7 and OneNote 2010.






                    share|improve this answer
























                    • This is the same approach the OP is trying to avoid, only using Notepad as the intermediate app rather than Word, so it isn't really a solution to the question.

                      – fixer1234
                      Sep 8 '16 at 18:46














                    0












                    0








                    0







                    I resorted to Pasting into Notebook then CNP from Notepad to EN.



                    Not smooth, but it worked :-/



                    This is on the latest EN release on Win7 and OneNote 2010.






                    share|improve this answer













                    I resorted to Pasting into Notebook then CNP from Notepad to EN.



                    Not smooth, but it worked :-/



                    This is on the latest EN release on Win7 and OneNote 2010.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Sep 8 '16 at 18:02









                    Chuck TChuck T

                    1




                    1













                    • This is the same approach the OP is trying to avoid, only using Notepad as the intermediate app rather than Word, so it isn't really a solution to the question.

                      – fixer1234
                      Sep 8 '16 at 18:46



















                    • This is the same approach the OP is trying to avoid, only using Notepad as the intermediate app rather than Word, so it isn't really a solution to the question.

                      – fixer1234
                      Sep 8 '16 at 18:46

















                    This is the same approach the OP is trying to avoid, only using Notepad as the intermediate app rather than Word, so it isn't really a solution to the question.

                    – fixer1234
                    Sep 8 '16 at 18:46





                    This is the same approach the OP is trying to avoid, only using Notepad as the intermediate app rather than Word, so it isn't really a solution to the question.

                    – fixer1234
                    Sep 8 '16 at 18:46











                    0














                    I just found a third-party solution to this issue. The clipboard manager "Clipboard Fusion" has a standard "scrub" feature which allows OneNote clips to be pasted as plain text. This is a partial solution but I still needed to manually re-instate any necessary text formatting.
                    I contacted technical support and they have just provided me with a macro which enables me to paste fully formatted text! I have not tested it on complex formatting (tables etc) but it certainly transfers basic fonts and styles.






                    share|improve this answer



















                    • 1





                      Should the macro you're using be part of your answer? It's not much help without it!

                      – Toby Speight
                      Feb 2 '17 at 10:56
















                    0














                    I just found a third-party solution to this issue. The clipboard manager "Clipboard Fusion" has a standard "scrub" feature which allows OneNote clips to be pasted as plain text. This is a partial solution but I still needed to manually re-instate any necessary text formatting.
                    I contacted technical support and they have just provided me with a macro which enables me to paste fully formatted text! I have not tested it on complex formatting (tables etc) but it certainly transfers basic fonts and styles.






                    share|improve this answer



















                    • 1





                      Should the macro you're using be part of your answer? It's not much help without it!

                      – Toby Speight
                      Feb 2 '17 at 10:56














                    0












                    0








                    0







                    I just found a third-party solution to this issue. The clipboard manager "Clipboard Fusion" has a standard "scrub" feature which allows OneNote clips to be pasted as plain text. This is a partial solution but I still needed to manually re-instate any necessary text formatting.
                    I contacted technical support and they have just provided me with a macro which enables me to paste fully formatted text! I have not tested it on complex formatting (tables etc) but it certainly transfers basic fonts and styles.






                    share|improve this answer













                    I just found a third-party solution to this issue. The clipboard manager "Clipboard Fusion" has a standard "scrub" feature which allows OneNote clips to be pasted as plain text. This is a partial solution but I still needed to manually re-instate any necessary text formatting.
                    I contacted technical support and they have just provided me with a macro which enables me to paste fully formatted text! I have not tested it on complex formatting (tables etc) but it certainly transfers basic fonts and styles.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Feb 2 '17 at 8:58









                    KenzKenz

                    11




                    11








                    • 1





                      Should the macro you're using be part of your answer? It's not much help without it!

                      – Toby Speight
                      Feb 2 '17 at 10:56














                    • 1





                      Should the macro you're using be part of your answer? It's not much help without it!

                      – Toby Speight
                      Feb 2 '17 at 10:56








                    1




                    1





                    Should the macro you're using be part of your answer? It's not much help without it!

                    – Toby Speight
                    Feb 2 '17 at 10:56





                    Should the macro you're using be part of your answer? It's not much help without it!

                    – Toby Speight
                    Feb 2 '17 at 10:56


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1089377%2fhow-to-paste-regular-text-from-microsoft-onenote-to-evernote%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Plaza Victoria

                    In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                    How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...