How to paste text only data to OneNote 2013?
Is there a keyboard shortcut to insert "Text Only" data to OneNote2013?

Maybe I can assign map keyboard shortcut using macro which could work in most Office products?
- This is not really an option because it's multiple keyboard combinations:
microsoft-office microsoft-onenote
add a comment |
Is there a keyboard shortcut to insert "Text Only" data to OneNote2013?

Maybe I can assign map keyboard shortcut using macro which could work in most Office products?
- This is not really an option because it's multiple keyboard combinations:
microsoft-office microsoft-onenote
add a comment |
Is there a keyboard shortcut to insert "Text Only" data to OneNote2013?

Maybe I can assign map keyboard shortcut using macro which could work in most Office products?
- This is not really an option because it's multiple keyboard combinations:
microsoft-office microsoft-onenote
Is there a keyboard shortcut to insert "Text Only" data to OneNote2013?

Maybe I can assign map keyboard shortcut using macro which could work in most Office products?
- This is not really an option because it's multiple keyboard combinations:
microsoft-office microsoft-onenote
microsoft-office microsoft-onenote
edited Oct 31 '13 at 17:21
J.Olufsen
asked Oct 31 '13 at 16:57
J.OlufsenJ.Olufsen
1,209133253
1,209133253
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
If you have a context menu key on your keyboard this can be accomplished with 2 presses.
I am sorry I cannot include a picture. It is located between the Windows Key and Ctrl on the right side next to the arrow keys.
The context menu will open and then you can press "T" this will perform the operation using only the keyboard at the location of the cursor.
add a comment |
Found the answer here: http://answers.microsoft.com/en-us/office/forum/office_2010-onenote/can-i-set-the-default-paste-in-onenote-as-keep/92f552ec-7042-4296-ac69-e74ad8791e2a
In short,
- Paste by Ctrl+V
- Open "Paste Option" that appears at the right bottom of the pasted text.
- Select plain text icon
- Open "Paste Option" again and click "Set as Default Paste"
This is exactly what i am looking for
– Vineel Kovvuri
Jul 5 '17 at 22:38
if you do ctr+V follow by pressing the ctrl button, the paste option will appear automatically
– Vincent Claes
Jun 20 '18 at 9:56
add a comment |
Alternatively use AutoHotkey (https://autohotkey.com) with the following script block. This filters to only apply the shortcut if OneNote is active and in this case detects CTRL + SHIFT + V and translates it into ALT + H V T for paste keep text only.
#IfWinActive ahk_exe ONENOTE.EXE
^+v::
SendInput !hvt
Return
#IfWinActive
add a comment |
I am not quite sure which version I have but if you paste and the little ctrl box comes up you can press the downward arrow, then select paste plain text, again go to the ctrl box and you can then press default paste.
add a comment |
Here's the best AutoHotkey code I could come up with for the OneNote app that comes with Office 365. Note that the filter will select all Metro/Modern/Universal/Windows Store apps.
; Office 365 OneNote Metro app hotkeys
#IfWinActive ahk_class ApplicationFrameWindow
; "Text Only" paste in OneNote
^+v::
SendInput, {appskey}
Sleep, 100
SendInput, {right}
Sleep, 100
SendInput, {down}{down}{enter}
return
#IfWinActive
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%2f667959%2fhow-to-paste-text-only-data-to-onenote-2013%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
If you have a context menu key on your keyboard this can be accomplished with 2 presses.
I am sorry I cannot include a picture. It is located between the Windows Key and Ctrl on the right side next to the arrow keys.
The context menu will open and then you can press "T" this will perform the operation using only the keyboard at the location of the cursor.
add a comment |
If you have a context menu key on your keyboard this can be accomplished with 2 presses.
I am sorry I cannot include a picture. It is located between the Windows Key and Ctrl on the right side next to the arrow keys.
The context menu will open and then you can press "T" this will perform the operation using only the keyboard at the location of the cursor.
add a comment |
If you have a context menu key on your keyboard this can be accomplished with 2 presses.
I am sorry I cannot include a picture. It is located between the Windows Key and Ctrl on the right side next to the arrow keys.
The context menu will open and then you can press "T" this will perform the operation using only the keyboard at the location of the cursor.
If you have a context menu key on your keyboard this can be accomplished with 2 presses.
I am sorry I cannot include a picture. It is located between the Windows Key and Ctrl on the right side next to the arrow keys.
The context menu will open and then you can press "T" this will perform the operation using only the keyboard at the location of the cursor.
answered Nov 12 '13 at 3:05
RyanRyan
36123
36123
add a comment |
add a comment |
Found the answer here: http://answers.microsoft.com/en-us/office/forum/office_2010-onenote/can-i-set-the-default-paste-in-onenote-as-keep/92f552ec-7042-4296-ac69-e74ad8791e2a
In short,
- Paste by Ctrl+V
- Open "Paste Option" that appears at the right bottom of the pasted text.
- Select plain text icon
- Open "Paste Option" again and click "Set as Default Paste"
This is exactly what i am looking for
– Vineel Kovvuri
Jul 5 '17 at 22:38
if you do ctr+V follow by pressing the ctrl button, the paste option will appear automatically
– Vincent Claes
Jun 20 '18 at 9:56
add a comment |
Found the answer here: http://answers.microsoft.com/en-us/office/forum/office_2010-onenote/can-i-set-the-default-paste-in-onenote-as-keep/92f552ec-7042-4296-ac69-e74ad8791e2a
In short,
- Paste by Ctrl+V
- Open "Paste Option" that appears at the right bottom of the pasted text.
- Select plain text icon
- Open "Paste Option" again and click "Set as Default Paste"
This is exactly what i am looking for
– Vineel Kovvuri
Jul 5 '17 at 22:38
if you do ctr+V follow by pressing the ctrl button, the paste option will appear automatically
– Vincent Claes
Jun 20 '18 at 9:56
add a comment |
Found the answer here: http://answers.microsoft.com/en-us/office/forum/office_2010-onenote/can-i-set-the-default-paste-in-onenote-as-keep/92f552ec-7042-4296-ac69-e74ad8791e2a
In short,
- Paste by Ctrl+V
- Open "Paste Option" that appears at the right bottom of the pasted text.
- Select plain text icon
- Open "Paste Option" again and click "Set as Default Paste"
Found the answer here: http://answers.microsoft.com/en-us/office/forum/office_2010-onenote/can-i-set-the-default-paste-in-onenote-as-keep/92f552ec-7042-4296-ac69-e74ad8791e2a
In short,
- Paste by Ctrl+V
- Open "Paste Option" that appears at the right bottom of the pasted text.
- Select plain text icon
- Open "Paste Option" again and click "Set as Default Paste"
answered Jan 19 '15 at 19:42
ckcnckcn
11113
11113
This is exactly what i am looking for
– Vineel Kovvuri
Jul 5 '17 at 22:38
if you do ctr+V follow by pressing the ctrl button, the paste option will appear automatically
– Vincent Claes
Jun 20 '18 at 9:56
add a comment |
This is exactly what i am looking for
– Vineel Kovvuri
Jul 5 '17 at 22:38
if you do ctr+V follow by pressing the ctrl button, the paste option will appear automatically
– Vincent Claes
Jun 20 '18 at 9:56
This is exactly what i am looking for
– Vineel Kovvuri
Jul 5 '17 at 22:38
This is exactly what i am looking for
– Vineel Kovvuri
Jul 5 '17 at 22:38
if you do ctr+V follow by pressing the ctrl button, the paste option will appear automatically
– Vincent Claes
Jun 20 '18 at 9:56
if you do ctr+V follow by pressing the ctrl button, the paste option will appear automatically
– Vincent Claes
Jun 20 '18 at 9:56
add a comment |
Alternatively use AutoHotkey (https://autohotkey.com) with the following script block. This filters to only apply the shortcut if OneNote is active and in this case detects CTRL + SHIFT + V and translates it into ALT + H V T for paste keep text only.
#IfWinActive ahk_exe ONENOTE.EXE
^+v::
SendInput !hvt
Return
#IfWinActive
add a comment |
Alternatively use AutoHotkey (https://autohotkey.com) with the following script block. This filters to only apply the shortcut if OneNote is active and in this case detects CTRL + SHIFT + V and translates it into ALT + H V T for paste keep text only.
#IfWinActive ahk_exe ONENOTE.EXE
^+v::
SendInput !hvt
Return
#IfWinActive
add a comment |
Alternatively use AutoHotkey (https://autohotkey.com) with the following script block. This filters to only apply the shortcut if OneNote is active and in this case detects CTRL + SHIFT + V and translates it into ALT + H V T for paste keep text only.
#IfWinActive ahk_exe ONENOTE.EXE
^+v::
SendInput !hvt
Return
#IfWinActive
Alternatively use AutoHotkey (https://autohotkey.com) with the following script block. This filters to only apply the shortcut if OneNote is active and in this case detects CTRL + SHIFT + V and translates it into ALT + H V T for paste keep text only.
#IfWinActive ahk_exe ONENOTE.EXE
^+v::
SendInput !hvt
Return
#IfWinActive
answered Jun 30 '16 at 8:27
itwyattitwyatt
111
111
add a comment |
add a comment |
I am not quite sure which version I have but if you paste and the little ctrl box comes up you can press the downward arrow, then select paste plain text, again go to the ctrl box and you can then press default paste.
add a comment |
I am not quite sure which version I have but if you paste and the little ctrl box comes up you can press the downward arrow, then select paste plain text, again go to the ctrl box and you can then press default paste.
add a comment |
I am not quite sure which version I have but if you paste and the little ctrl box comes up you can press the downward arrow, then select paste plain text, again go to the ctrl box and you can then press default paste.
I am not quite sure which version I have but if you paste and the little ctrl box comes up you can press the downward arrow, then select paste plain text, again go to the ctrl box and you can then press default paste.
answered Aug 21 '16 at 23:47
Cybelle BurgessCybelle Burgess
1
1
add a comment |
add a comment |
Here's the best AutoHotkey code I could come up with for the OneNote app that comes with Office 365. Note that the filter will select all Metro/Modern/Universal/Windows Store apps.
; Office 365 OneNote Metro app hotkeys
#IfWinActive ahk_class ApplicationFrameWindow
; "Text Only" paste in OneNote
^+v::
SendInput, {appskey}
Sleep, 100
SendInput, {right}
Sleep, 100
SendInput, {down}{down}{enter}
return
#IfWinActive
add a comment |
Here's the best AutoHotkey code I could come up with for the OneNote app that comes with Office 365. Note that the filter will select all Metro/Modern/Universal/Windows Store apps.
; Office 365 OneNote Metro app hotkeys
#IfWinActive ahk_class ApplicationFrameWindow
; "Text Only" paste in OneNote
^+v::
SendInput, {appskey}
Sleep, 100
SendInput, {right}
Sleep, 100
SendInput, {down}{down}{enter}
return
#IfWinActive
add a comment |
Here's the best AutoHotkey code I could come up with for the OneNote app that comes with Office 365. Note that the filter will select all Metro/Modern/Universal/Windows Store apps.
; Office 365 OneNote Metro app hotkeys
#IfWinActive ahk_class ApplicationFrameWindow
; "Text Only" paste in OneNote
^+v::
SendInput, {appskey}
Sleep, 100
SendInput, {right}
Sleep, 100
SendInput, {down}{down}{enter}
return
#IfWinActive
Here's the best AutoHotkey code I could come up with for the OneNote app that comes with Office 365. Note that the filter will select all Metro/Modern/Universal/Windows Store apps.
; Office 365 OneNote Metro app hotkeys
#IfWinActive ahk_class ApplicationFrameWindow
; "Text Only" paste in OneNote
^+v::
SendInput, {appskey}
Sleep, 100
SendInput, {right}
Sleep, 100
SendInput, {down}{down}{enter}
return
#IfWinActive
answered Feb 3 at 2:25
jcjccjcjcc
111
111
add a comment |
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%2f667959%2fhow-to-paste-text-only-data-to-onenote-2013%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