Jump to content

Open Note in Separate Window Keyboard Shortcut


Recommended Posts

I just finally upgraded from 5.6.2 to 6.4 and I'm loving some of the new features! For years I have used a keyboard shortcut to open a note from the main window into it's own separate window. I would do this by adding a Keyboard Shortcut in System Preferences (you could do this because it was an app menu item). It looks like with this new release though that option has been moved down to the alt-click context menu. As a result I am unable to add a keyboard shortcut using that method. Can anyone think of a workaround? It's not a deal breaker by any means, it's just part of a deeply ingrained workflow.

Thanks!

Link to comment
  • Level 5*
4 hours ago, Hamburglar said:

For years I have used a keyboard shortcut to open a note from the main window into it's own separate window.

For some unknown reason Evernote removed "Open in Window" from the main menus of EN Mac.

The only solution I have found is using AppleScript:

tell application "Evernote"
	
	set _sel to selection -- Gets the Note(s) Selected in Evernote
	if _sel ≠ {} then
		set oNote to first item of _sel -- Get ONLY the 1st Note
		open note window with oNote
		
	end if
end tell

tell application "System Events" to set frontmost of process "Evernote" to true

I use FastScripts to assign shortcuts to my scripts.

Link to comment
  • 4 months later...
  • 4 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...