-
Content Count
530 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Calendar
Forums
Blogs
Downloads
Everything posted by Adjusting
-
Today we’re releasing Evernote for Mac 6.6 Beta 3. Fixes - The note switcher (⌘J) has been updated to be more responsive and to provide more accurate results - Various bug and stability fixes Known issues - Autocompletion of tags in the note editor is not working. A fix for this issue will be available in the final release. Thanks for testing the Mac 6.6 Beta 3 release and please report issues you find in this forum thread. You can download the beta here or update from within the app.
-
Evernote for Mac 6.5 Released
Adjusting replied to SoftwareMarcus's question in Evernote for Mac Requests (Versions 7.14 and under)
Please note that this is a Beta feature which is only available on the direct download version and only after it is explicitly turned on (Preferences -> Software Update -> Enable zoom). -
Evernote for Mac 6.5 Released
Adjusting replied to SoftwareMarcus's question in Evernote for Mac Requests (Versions 7.14 and under)
Noted. -
Evernote for Mac 6.5 Released
Adjusting replied to SoftwareMarcus's question in Evernote for Mac Requests (Versions 7.14 and under)
Safari, Chrome and Firefox use Cmd-+ and Cmd-- for Zoom In and Zoom Out just like we do. Terminal, Messages and Slack say that they do Bigger and Smaller, but the shortcuts apply to all text in the app and so are functionally equivalent to our Zoom In and Zoom Out. Xcode doesn’t seem to have any shortcuts bound to Cmd-+ and Cmd--. I understand any change can be disruptive, but please be assured that this is not a change we made lightly or without much discussion. Given the lack of a clear standard, we felt it was more important to follow the de facto text editing standard -
This was a bug in Yosemite. Apple seems to have fixed the bug in 10.10.3. Please update your OS and let us know if this is still an issue.
-
Sharing Notebooks
Adjusting replied to JoeD72's topic in Evernote for Mac Issues (Versions 7.14 and under)
Yes, this is the email you get the first time you receive a message from someone. If you click the button you'll have the option to see the message in the web client or desktop client. Click the notebook in the chat and it should be added to your account. -
Sharing Notebooks
Adjusting replied to JoeD72's topic in Evernote for Mac Issues (Versions 7.14 and under)
Have your student open the notebook (by clicking on it in the chat window). Once they do, it should be added to their notebooks. Does that work? -
mac Applescript to Add Tags
Adjusting replied to learned's topic in Evernote for Mac Issues (Versions 7.14 and under)
No, your code is not correct. Like I said, selection is a list, so in the following code you’re setting selectedNote to a list of notes and then asking that list of notes for its tags. That won’t work. A note has tags. A list of notes does not have tags. -
mac Applescript to Add Tags
Adjusting replied to learned's topic in Evernote for Mac Issues (Versions 7.14 and under)
selection is a list if you know there’s only going to be 1 note selected, you can just look at item 1, otherwise you can loop through it. -
mac REQUEST: Print title & info in printed notes
Adjusting replied to SwissPol's question in Evernote for Mac Requests (Versions 7.14 and under)
That would be very helpful. Thank you. -
Right, but your original script already did that. I’m just trying to figure out what the goal of your changes was.
- 77 replies
-
No, you’re right. There doesn’t seem to be any difference. I was just trying to fix the problems with your latest script (using keyboard shortcuts that don’t exist, using theMessages before setting it, mismatched tell and end...) and didn’t reread the whole thread. What were you trying to accomplish with your latest script that your original didn’t do?
- 77 replies
-
I’m good at debugging and modifying other people’s scripts, but I don’t know if I could write one from scratch. The issue where find notes did not work with the 'notebook:' syntax should be fixed in 6.0.6 beta 2 Which other issues are affecting your workflows?
- 77 replies
-
Try this: tell application "Notes" set theMessages to every note repeat with thisMessage in theMessages set myTitle to the name of thisMessage set myText to the body of thisMessage set myCreateDate to the creation date of thisMessage set myModDate to the modification date of thisMessage tell application "Evernote" set myNote to create note with text myTitle title myTitle notebook "Imported Notes" tags ["imported_from_notes", "Yosemite", "Another_Example_Tag"] set the HTML content of myNote to myText set the creation date of myNote to myCreateDate set the modification date of myNot
- 77 replies
-
- 1
-
-
You could try using keyboard shortcuts. Something like this maybe: tell application "Evernote" activate -- bring the Evernote client forward delay 1 -- wait to make sure the client has fully activated tell application "System Events" keystroke "|" using command down -- Cmd-| to go to the note list keystroke "a" using command down -- Cmd-A to select all end tellend tellI now see you were talking about the Notes app. A similar approach should work there too.
- 77 replies
-
You could try using keyboard shortcuts. Something like this maybe: tell application "Evernote" activate -- bring the Evernote client forward delay 1 -- wait to make sure the client has fully activated tell application "System Events" keystroke "|" using command down -- Cmd-| to go to the note list keystroke "a" using command down -- Cmd-A to select all end tellend tell
- 77 replies
-
mac REQUEST: Print title & info in printed notes
Adjusting replied to SwissPol's question in Evernote for Mac Requests (Versions 7.14 and under)
When I print a note from 6.0.5, the title is printed (in bold even) regardless of whether 'Print Headers' is checked. What OS are you seeing this issue on?