
Nick Lane
Level 2-
Content Count
18 -
Joined
-
Last visited
Community Reputation
3 NeutralAbout Nick Lane

Profile Information
-
Subscription
PREMIUM
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Request: Remove Reminders Tab (optionally)
Nick Lane replied to Nick Lane's question in Evernote for Mac Requests (Versions 10.0 and above)
@aukirkFound a couple that were just that. Removed the reminder set on each and the tabs went away. Thanks again! -
Request: Remove Reminders Tab (optionally)
Nick Lane replied to Nick Lane's question in Evernote for Mac Requests (Versions 10.0 and above)
Thanks! maybe it’s a shared note. I’ll dig into it. Appreciate the insight. -
Hi, I do not use Evernote for setting reminders. It currently shows a title for this (and notes) and unnecessarily takes up screen real estate at the top of my notes list with no way of removing it. I would love to be able to hide/disable these tabs from being a filtered view. On a small notebook screen, it could add a nice amount of screen height that doesn't seem necessary if I never tab between them. I have no need to view "Notes" or "Reminders" as titles at all times at the top of my app. I'd much prefer to just get to my first note listed. Thank you!
-
Siri Shortcut Help - Appending Saved Article URL
Nick Lane replied to Nick Lane's topic in Evernote Integrations
What you’re describing is the official Evernote share sheet option. Sadly, that feature doesn’t work for the articles I try to save in most instances, and the formatting it saves the page in is not very desirable. I’m using a custom iOS Shortcut that does a fantastic job of simplifying things by only saving the body of the article. This saves the content, and any images, in an easy to read format within Evernote. It’s very accurate and always works without issue. However, my shortcut doesn’t save the URL properly into the info icon area that you show above. And I also want to place a -
Siri Shortcut Help - Appending Saved Article URL
Nick Lane replied to Nick Lane's topic in Evernote Integrations
Unfortunately not. I’m trying to create a custom shortcut. I’m struggling with using the variables and custom actions. -
Curious — could one possibly use this to copy/paste a tweet URL and create a nicely formatted tweet to appear within a note?
-
Hi, I have a Siri Shortcut that does a great job of saving an article to Evernote with the share sheet, but I have two needs I have been unable to program correctly. I want to append the URL of the article I’m saving at the top of the note as a link. And I’d love to save the URL to that URL field of the note. Nothing I’ve tried has been able to solve this. Would anyone have a recommendation on what I can set in my action list to accomplish this?
-
Auto-create internal links?
Nick Lane replied to Nick Lane's topic in Evernote for Mac Issues (Versions 7.14 and under)
This is fantastic! Thank you so much @DTLow for making this a reality! I really appreciate it and plan to dig into it further to learn each aspect of this code. I hope you find it just as useful. Below is the full source I'm running at the moment. A few comments I had, I'm not sure what options you'd recommend. 1. In the note selector that pops up, the date overpowers the title. Might recommend minimizing date format and/or perhaps add some type of delimiter. 2. My pop-up window starts at 1 line only; even if there's more than one option to choose from. Is there a way to increas -
Auto-create internal links?
Nick Lane replied to Nick Lane's topic in Evernote for Mac Issues (Versions 7.14 and under)
Nice, I’ll give this a try this morning! Looks like I have a lot of dissecting to do on these last few steps to learn from. 👍🏻 -
Auto-create internal links?
Nick Lane replied to Nick Lane's topic in Evernote for Mac Issues (Versions 7.14 and under)
So CollectnoteData is a custom function you're creating? -
Auto-create internal links?
Nick Lane replied to Nick Lane's topic in Evernote for Mac Issues (Versions 7.14 and under)
I have the scripts available now in my toolbar, thanks! I've saved what I had so far to this file. Testing directly in the scripts editor gets the correct result. If I highlight text in the Evernote note, and then select the script from the toolbar, nothing is happening yet. tell application "System Events" to keystroke "c" using {command down} delay 1 set selectedText to the clipboard set searchQuery to "intitle:\"" & selectedText & "\"" tell application "Evernote" to find notes searchQuery -
Auto-create internal links?
Nick Lane replied to Nick Lane's topic in Evernote for Mac Issues (Versions 7.14 and under)
Cool feature! I wasn't aware. I'll check it out! I was trying to add it as a right-click "Services" menu item, but wasn't getting anywhere. I thought that might be cool to highlight the word and quickly right-click. A keyboard shortcut might be a good idea as well. I do have TextExpander installed and thought I might be able to come up with something for it. In the script editor, I was experimenting with something similar! I was stuck on how to pass that selectedText to the tell statement. tell application "System Events" to keystroke "c" using {command down} delay 1 set selecte