How to paste regular text from Microsoft Onenote to Evernote
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
add a comment |
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
add a comment |
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
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
copy-paste microsoft-onenote evernote
asked Jun 15 '16 at 2:46
Renato ChencinskiRenato Chencinski
315
315
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
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.
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
add a comment |
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
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
add a comment |
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Dec 20 '18 at 13:57
WouterWouter
1,077926
1,077926
add a comment |
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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