Jump to content

Adjusting

Level 5
  • Posts

    530
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by Adjusting

  1. 17 hours ago, JMichaelTX said:

    Hey @Adjusting, I just noticed you posted this update.  Have not seen you for a long time.  Hope you're doing well.

    Do you have new duties, or are you just pinch-hitting?

    I'm doing well, thanks for asking.

    @Nick L. wasn't available to post the update yesterday so I did it for him.

    17 hours ago, JMichaelTX said:

    Does EN Mac 7.13 include a fix for the EvernoteSpotlight tool crashing many times a day?
    Running Evernote 7.12 (457935) on macOS 10.14.5 (Mojave).

    While we have many reports of this crash, we have not been able to reproduce it internally and thus we have been unable to identify the cause of the crash or find a fix for it.

  2. Evernote for Mac 7.13 is now available. You can download it here

    Fixed:
    - We take data security very seriously, so we made an update to keep your information even more secure.
    - Long (and we mean reaaaaally long) usernames would push a note’s title down until it overlapped the text beneath it. The whole thing was a big mess so we fixed it.
    - Extra spaces in space names and space descriptions will now be trimmed down to just one. A little space is healthy but that was too much.

     

  3. 2 hours ago, luckman212 said:

    Well, this is new I think- I don't remember seeing results like that in Spotlight w/ 7.9

    The bug is annoying because it does find things, but then you can't open them or see which note they are attached to. As I said before, I assume and hope that this is just a bug.

    This is indeed a bug. Spotlight should not be returning results for those files.

  4. 8 hours ago, Dirk Dutchman said:

    This I have to insert manually. There is a shortcut option SHIFT-CMD-D, however the date format that I need is not in there!

    Can you please add the date format YYYYMMDD to the date options?

    The four options available for Insert Date are simply based on the four date formats in System Preferences (Short, Medium, Long, Full).

    In order to set your own date format, go to System Preferences->Language & Region->Advanced->Dates

    • Like 2
  5. On 10/3/2017 at 7:55 AM, AnCo said:

    In side list view, if the title of a note is longer than what can be shown on a single line, in the right-side window pane, instead of automatically showing on two lines, it is only partially visible.

    I'm not entirely sure what you mean. Can you post a screenshot? 

    You say you're talking about 'the right side window pane', do you mean the editor window? If so, the display of the title should not be affected by the view mode of the note list. In other words, the title should look the same in the note editor regardless of whether you're in side list view or in card view.

  6. Justin,

     

    This is what I get.  But I get no reference to adding the notebook.

     

    ******* shared a notebook with you

    ****** is using chat to share work with you. Click below to read and reply to this chat.

     

    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.

    • Like 1
  7. Thank you Adjusting, but I don't see how your script differs from the one I initially tried (see my post dated 18 Jan 10:30AM).

    Apologies if it is different.

    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?

  8. @Adjusting:  I can see that you are an accomplished AppleScript coder.  Could you please help us get the AppleScript issues with EN Mac 6.0.5 fixed?  Many of use routinely rely on AppleScript in our Evernote workflows.

     

    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?

  9. 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 myNote to myCreateDate		end tell	end repeatend tell
    • Like 1
  10.  

    I cannot seem to find any apple script command for 'select all' in notes. But is that even possible? Surely there must be such a command. I can certainly select all notes manually in the notes app, so why would this scripting feature be absent?

     

    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

    I now see you were talking about the Notes app. A similar approach should work there too.

  11. I cannot seem to find any apple script command for 'select all' in notes. But is that even possible? Surely there must be such a command. I can certainly select all notes manually in the notes app, so why would this scripting feature be absent?

     

    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
  12.  

    Hi.  AFAIK encryption/ decryption only works on a note-by-note basis.  You might be able to search for encrypted notes and use a script of some sort to decrypt and export them - type "encryption:"  - without the quotes but with the colon - in the search box to get a list.  If you forget the search term - In the Left Panel choose:  >Attributes >Contains >Encrypted Text.

    Hi gaz, I used the "encrypted:" search and I'll see if I can get it to work in AppleScript. Is the Attributes feature available in the Mac version?

     

     

    In the Mac client:

    1. Click on the Search field

    2. Click on the Add Search Option pulldown menu

    3. Select Contains

    4. In the second pulldown select Encryption

    5. Click the Add button

     

    Alternatively if your system language is set to English:

    1. Click on the search field

    2. Type 'encrypt'

    Descriptive Search will suggest “Are you searching for Notes with encryption"

    3. Click on the suggestion

    • Like 2
  13. Read the OPs description more carefully - what they are experiencing is expected because they are using cmd+k, cmd+v to paste the link within evernote - which opens a web address link dialogue box and pastes within it - as expected - a web link.

     

    As I described above, simply pasting within evernote (i.e. just cmd+v) does indeed paste an evernote:// link.

     

    I read it and understood it.

    Pasting a note link within Evernote in any way should produce an evernote://link

    The fact that it doesn't work that way with cmd-k is a bug.

  14.  

    Links do not paste as "evernote://" within Evernote for me.  If I copy a link to page in Evernote Mac then paste it (cmd+k, cmd+v), it pastes as a http:// link, and opens a browser if you click it.

     

    The behaviour your describe is expected.

     

    This is not expected behaviour. It is a bug which we expect to fix in the next release.

    Note links should always paste as evernote:// when pasting into Evernote itself.

    As a workaround, Control-click on the note, hold down the option key and select "Copy Classic Note Link" 

  15.  

    Reminders CAN be manually sorted

    Whoa, really? I can't do it on any Evernote client that I use (Windows, Android, web). You can change the reminder date, sure, but I don't tthink that that means the same thing. Or am I missing something?

     

    You're missing something.

     

    In the Mac, Web and Windows clients, just click on the gear at the top of the Reminders, and uncheck 'Sort Reminders by Date'.

    Once you've done that, you can drag the reminders to reorder them.

     

    You can do the equivalent on Android too.

    • Like 2
  16. These are great instructions, but I can't open the annotation window. Help. 

     

    This support page says that to Annotate an image in the Mac client I should Ctrl+Click on an image and that will give me an Annotate this image option. 

    This page shows what I see when I Ctrl-click on an image. 

     

    Where is the Annotate this image... option

    I am using Evernote 5.5.1 on OSX 10.6.8 

     

    Thank you in advance for your help.

     

    Annotation is only available in 10.7 and later.

  17. Yea, Evernote did not like the null value for the computer name. Not sure if this is fixed in recent versions, or if it will be fixed. I would assume EN is using the value to populate a default value for the device you are syncing... I would prefer it asks, even if a null value is found.

     

    This should be fixed in the 5.5.1 Beta:

     

    http://discussion.evernote.com/topic/54610-evernote-for-mac-551-beta/

    • Like 1
×
×
  • Create New...