Jump to content

jfcg

Member
  • Posts

    7
  • Joined

  • Last visited

Everything posted by jfcg

  1. Thanks for the script! Nevertheless, it doesn't seem to work with multiplay display. It doesn't get coordinates properly, and can't click and open the menu of the menu bar. I think relevant information is shown here: https://daringfireball.net/2006/12/display_size_applescript_the_lazy_way Do you think it's fixable? Thanks in advance!
  2. Since I didn't have any answer and it's an easy task, I share a very simple patch if anyone else is interested in remove duplicates. In update_contacts.py, change the following lines in the main function: contacts.append(d) people_count += 1 To: if d not in contacts: contacts.append(d) people_count += 1
  3. Thanks for your reply. I meant with duplicates to the same email AND the same name. I think it's the approach most of the applications take. I use MailMate and duplicates don't show. It's clear that if you aren't very carefully, some duplicates can't be filtered. But at least, it's up to the user to maintain its contacts list clean. Also, from a usability point of view, it's weird that a selection list is populated with exactly the same entry several times. Do you think it could be interesting to implement this approach? Thanks! PD: I don't disable my Google Contacts account, because I would like to keep my contacts synchronized. It's a pity that groups don't synchronize and I have to do it manually, causing problems like this issue.
  4. Hello deanishe, Could it be possible to handle duplicates? I have all my contacts in google, and because groups are not synchronized with Address Book app, I also have them in my Address book as "In my Mac" groups. The problem is that they appear twice in the workflow. Do you think it could be easy to fix it? Thanks in advance!
  5. Hello David! Thank you so much! It worked great. Sorry for the newbie question. Cheers!
  6. Hello! I'm working with my first workflow. At the end of it (in Output), I need to launch an Applescript with some input. The only option I have found to do it is by Run Script with /usr/bin/osascript as interpreter. I know NSAppleScript Action, and there you can get inputs with the variable 'q', but how can I do it with osascript interpreter? NSAppleScript is only an Action and it isn't available as an Output. I've already tried using 'on run argv' with no luck. Input is always empty. Could anyone help me? Thanks in advance!
×
×
  • Create New...