IPhoto 9.4 to Outlook 2011 V 14.2.4 [10.8.2] Need AS specialist :-)

Hi
Is there anything to do with Outlook 2011 V 14.2.4 (with Apple script) to make it work (Sending email from iPhoto to outlook) with iPhoto 9.4 in Mountain Lion .
The script made by Apple in iPhoto 9.4 (Contents/Ressources/ Scripts) is :
-- Microsoft Entourage.applescript
-- Scope
-- Copyright (c) 2003 Apple Computer. All rights reserved.
on mail_images(email_subject, default_address, image_count, new_files,new_captions, new_comments, cancel_string)
          try
                    tell application "Microsoft Outlook"
  activate
                              set theAccount to default account
                              tell drafts of theAccount
                                        set new_message to make new outgoing message with properties {subject:email_subject, content:"",account:theAccount}
                              end tell
                              set sig to content of new_message
                              tell new_message
                                        if image_count is 0 then
                                                  set the content to new_captions
                                        else
                                                  set the content to return & return
                                        end if
                                        repeat with image_idx from 1 to image_count
                                                  set this_caption to item image_idx ofnew_captions
                                                  set this_comment to item image_idx ofnew_comments
                                                  set comments to ""
                                                  if this_caption is not " " then
                                                            set comments to this_caption & return
                                                  end if
                                                  if this_comment is not " " then
                                                            set comments to comments &this_comment & return
                                                  end if
                                                  if comments is not "" then
                                                            set the content to content & comments &return
                                                  end if
                                                  set this_imagefile to item image_idx of new_files
  -- convert the image path from UNIX to Mac
                                                  set this_imagefile_path to (POSIX filethis_imagefile) as string
  make new attachment at new_message with properties {filethis_imagefile_path)}
                                        end repeat
                                        set the content to content & sig
                              end tell
  open new_message
                    end tell
          on error error_message number error_number
  log error_message & " " & error_number
                    if the error_number is not -128 then
                              tell application "Finder"
                                        beep
  display dialog error_message buttons {cancel_string} default button 1
                              end tell
                    end if
          end try
end mail_images
property ASDScriptUniqueIdentifier : "Microsoft Outlook.applescript"
This do not work with Outlook 2011.
Outlook client is correctly select in the iPhoto preferences.
When i want to send a picture, Outlook opens but no window opens with the new message with the picture ...
Any idea ?
Thx !

Hi
Is there anything to do with Outlook 2011 V 14.2.4 (with Apple script) to make it work (Sending email from iPhoto to outlook) with iPhoto 9.4 in Mountain Lion .
The script made by Apple in iPhoto 9.4 (Contents/Ressources/ Scripts) is :
-- Microsoft Entourage.applescript
-- Scope
-- Copyright (c) 2003 Apple Computer. All rights reserved.
on mail_images(email_subject, default_address, image_count, new_files,new_captions, new_comments, cancel_string)
          try
                    tell application "Microsoft Outlook"
  activate
                              set theAccount to default account
                              tell drafts of theAccount
                                        set new_message to make new outgoing message with properties {subject:email_subject, content:"",account:theAccount}
                              end tell
                              set sig to content of new_message
                              tell new_message
                                        if image_count is 0 then
                                                  set the content to new_captions
                                        else
                                                  set the content to return & return
                                        end if
                                        repeat with image_idx from 1 to image_count
                                                  set this_caption to item image_idx ofnew_captions
                                                  set this_comment to item image_idx ofnew_comments
                                                  set comments to ""
                                                  if this_caption is not " " then
                                                            set comments to this_caption & return
                                                  end if
                                                  if this_comment is not " " then
                                                            set comments to comments &this_comment & return
                                                  end if
                                                  if comments is not "" then
                                                            set the content to content & comments &return
                                                  end if
                                                  set this_imagefile to item image_idx of new_files
  -- convert the image path from UNIX to Mac
                                                  set this_imagefile_path to (POSIX filethis_imagefile) as string
  make new attachment at new_message with properties {filethis_imagefile_path)}
                                        end repeat
                                        set the content to content & sig
                              end tell
  open new_message
                    end tell
          on error error_message number error_number
  log error_message & " " & error_number
                    if the error_number is not -128 then
                              tell application "Finder"
                                        beep
  display dialog error_message buttons {cancel_string} default button 1
                              end tell
                    end if
          end try
end mail_images
property ASDScriptUniqueIdentifier : "Microsoft Outlook.applescript"
This do not work with Outlook 2011.
Outlook client is correctly select in the iPhoto preferences.
When i want to send a picture, Outlook opens but no window opens with the new message with the picture ...
Any idea ?
Thx !

Similar Messages

  • Email from IPhoto 9.4 to Outlook  2011 V 14.2.4 [Mountain Lion]

    On Mountain Lion [10.8.2], this do not work ...
    Outlook client is correctly select in the preferences
    When i want to send a picture, Outlook opens but no window opens with the new message with the picture ...
    Any idea ?

    Thx.
    Trying to find what to ask now
    Think the correct question is :
    Is there anything to do with Outlook 2011 V 14.2.4 (with Apple script) to make it work (Sending email from iPhoto to outlook) with iPhoto 9.4 in Mountain Lion .
    The script made by Apple in iPhoto 9.4 is :
    -- Microsoft Entourage.applescript
    -- Scope
    -- Copyright (c) 2003 Apple Computer. All rights reserved.
    on mail_images(email_subject, default_address, image_count, new_files, new_captions, new_comments, cancel_string)
              try
                        tell application "Microsoft Outlook"
      activate
                                  set theAccount to default account
                                  tell drafts of theAccount
                                            set new_message to make new outgoing message with properties {subject:email_subject, content:"", account:theAccount}
                                  end tell
                                  set sig to content of new_message
                                  tell new_message
                                            if image_count is 0 then
                                                      set the content to new_captions
                                            else
                                                      set the content to return & return
                                            end if
                                            repeat with image_idx from 1 to image_count
                                                      set this_caption to item image_idx of new_captions
                                                      set this_comment to item image_idx of new_comments
                                                      set comments to ""
                                                      if this_caption is not " " then
                                                                set comments to this_caption & return
                                                      end if
                                                      if this_comment is not " " then
                                                                set comments to comments & this_comment & return
                                                      end if
                                                      if comments is not "" then
                                                                set the content to content & comments & return
                                                      end if
                                                      set this_imagefile to item image_idx of new_files
      -- convert the image path from UNIX to Mac
                                                      set this_imagefile_path to (POSIX file this_imagefile) as string
      make new attachment at new_message with properties {filethis_imagefile_path)}
                                            end repeat
                                            set the content to content & sig
                                  end tell
      open new_message
                        end tell
              on error error_message number error_number
      log error_message & " " & error_number
                        if the error_number is not -128 then
                                  tell application "Finder"
                                            beep
      display dialog error_message buttons {cancel_string} default button 1
                                  end tell
                        end if
              end try
    end mail_images
    property ASDScriptUniqueIdentifier : "Microsoft Outlook.applescript"
    This do not work with Outlook 2011.
    Outlook client is correctly select in the iPhoto preferences.
    When i want to send a picture, Outlook opens but no window opens with the new message with the picture ...
    Any idea ?
    Thx

  • Iphone does no recognize Mac Outlook 2011

    I tried to synclonize Iphone with Mac Outlook 2011 but does not appear on the Link Mail account.
    I was not able to link iPhone with Outlook 2011 on Imac OS10.6.6.

    xdakotakid wrote:
    Here is a solution so that iPhoto can send photos via Mac Outlook 2011
    http://www.mechodownload.com/forum/macintosh-programs/448302-iphoto-email-micros oft-outlook-2011-a-Full-Free-Downloads-Keygen-Crack-Serial-Activator-Free-Hosts. html
    Isn't that the same thing I posted yesterday?

  • Is there a way to synchronize Outlook 2011 on two macs?

    Hi
    I just bought my wife a macbook air.  She uses roadrunner mail service (so only pop, no imap) and is using outlook 2011 on both the home imac as well as her laptop.  Only problem is that messages get deleted from the server as we are constrained to pop.  Having one machine delete the messages on the server and the other not delete is not desireable...Nor is futzing around with two identities and using a unified inbox.
    Hence my question: anyone have any success with any third party software which sync's outlook 2011? 
    thanks
    Jay

    No, is the answer.
    Or maybe. Depending.
    If you do all your changes on one mac, then simply backing up to the other will keep them in sync.
    But if you use both for making changes then no. defintiely not.
    Exporting to the Finder then importing to the other library will not do what you want either. You won't get the versions and the edit hostory. But you can get all of that by simply using iPhoto Library Manager
    Regards
    TD

  • I'm trying to import contacts to outlook 2011 from a cvs file.  I've followed all the steps, mapped the fields, clicked import -- it shows that it imported my 900 contacts --- but the contact field remains blank and I can't see any information.  Help?

    I'm trying to import contacts to outlook 2011 from a cvs file.  I've followed all the steps, mapped the fields, etc.  It appears to import all 900 contacts, but after finishing nothing appears in my contact list.  Any ideas on why this is not working?

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • I cannot find MACs new 'Photos' in Finder under 'Media' when I try to attach a picture using Outlook 2011 for email.

    Hi I am using Outlook 2011 and i have today uploaded MAC's new 'Photos'. When I try and attach a photo Finder no longer show the IPhoto liv=brary in Finder under Media and there is no replacement.
    Help i need to send a photos using the attach button in an email in Outlook.
    Many thanks.

    as an additional issue i cannot find any method now of attaching a photo to an Outlook 2011 email using Photo (e.g. using the paperclip button or the media browser)
    This seems odd to me and there must be a work around.

  • Outlook 2011 for mac no longer syncs with calendar and contacts

    Hi all,
    Not sure whether the recent security update botched up my sync, but after recently upgrading to MS Office with Outlook 2011 for the Mac, my contacts and calendar items no longer sync.  I've applied the revised security patch to no avail.  In fact, I noticed that my contacts were no longer syncing prior to the security update, and in the last day or so, I have noticed that calendar items have ceased to sync.  I've tried all of the Microsoft and Apple knowledge-based recipes to correct the problem, but it persists.  I may be missing something, or performed the steps out of sequence, but I've tried them many times and I'm sure at least once was to the letter.
    The oddity is that the problem appears to be a broken link between iCal and Outlook via the sync process, which uses MobileMe and is administered through iTunes.  Perhaps someone has a straightforward instruction set to fix that link?
    Is anyone else having this problem of late?  I am on Snow Leopard, 10.6.8 on a 2011 MBP with MS Office 2011 and SP1 installed.
    Thanks much in advance for any helpful advice.

    Thanks Julian for the suggestion. Unfortunately all still checked out and nothing amiss. However, after reinstalling OS 10.6.8 it appears that my calendar items are syncing once again, but not my contacts. I appreciate the suggestion none the less.
    This same thing seems to happen each time I've upgraded Office with the associated version of Entourage, and now Outlook. Ah, well..nothing's ever simple. But I am thoroughly enjoying Outlook and the rest of the Office suite.

  • Outlook 2011 no longer syncing with iCal and contacts

    I have installed Yosemite recently on my Macbook Pro. I run MS Outlook 2011 for professional reasons. Until now, syncing with my Android phone worked (almost) fine, using a nice app called SyncMate. For a few days now (not sure it is linked to installing Yosemite though) new data on my outlook calendar and address book no longer appear on my phone after syncing. After checking I realized that Outlook is actually not syncing any more with iCal and Contacts, so of course the syncing with the phone cannot work. How can I resolve this ?

    facing the same problem, it was syncing prior to my upgrade to Lion. have you managed to find a solution?

  • I cannot send email from Outlook 2011 (for Mac). But can send from other applications

    I have Outlook 2011 for Mac - I have validated the settings and up until yesterday could send and receive emails using my .mac account.
    I can send using icloud and mail (I use Outlook for work purposes) and can send in outlook using my work accounts.
    My settings
    Incoming server - imap.mail.me.com
    Use SSL to connect checked.
    Outgoing server - smtp.mail.me.com
    override default port checked (port 587)
    use SSL to connect checked
    authentication - Username and password.
    I have rebuilt the database - no effect.
    I continue to get the error
    "Mail could not be sent
    The server for account "mac" returned the error. 5.7.8. Bad Username or password (Authentication failed..)" Your username/password or security settings may be incorrect. Would you like to try rentering your password"
    I have validated my username and password and rentered them both.
    I have emptied the outbox and retried but nothing works.
    Thanks for the help.

    Update - I now have it working.
    am not really sure what exactly fixed it.
    I changed a lot of things but my setup now has the following which I think fixed.
    outgoing server  - p06-smtp.mail.me.com
    override default port checked - port now 587
    on more options button changed it to "use incoming server info".

  • How do you cut and paste tables in and out of Excel from either Mail.app or Outlook 2011?

    When I try to cut and paste a table generated in Excel for Mac into the body of an email the formatting holds but when I send the table is reduced to one column. Same is true for copying from incoming mail into Excel, when I paste into Excel it is reduced to one column rather than keeping the table format. I have tried using mail.app and went out and Outlook 2011 and both programs have the same issue. The reformatting also happens when I forward an email received from a coworker that contains a table, not just on cut and paste operations.
    I need to do this regularly and right now my only option is using my old PC where the cut and paste function keeps formatting between Excel and Outlook just fine. Attaching a pdf or excel file is not an option. There has to be a way to maintain the formatting and being able to extract the tables keeping them intact. Please let me know if you have a solution to maintain this formatting within email programs. Thank you in advance.

    Selecting all does not help - the issue is I need a table within an incoming email to be moved to excel, edited and then pasted back into a new email. "Select All" picks up the email headers, signatures, any messages around the table etc so that doesn't work. Also, as pointed out above Excel doesn't have a select all feature to get the tables back into the body of an email.
    I just tried again going from Excel into Outlook 2011. No luck. All one column down the left side of the email. All columns are removed and text crammed into one column. Just to check I cut from one Excel document and pasted into another and it retained all formating just fine. It is only in and out of Outlook that seems to be the issue.

  • I have an iMac running Yosemite 10.10.1 & Outlook 2011 for Mac.  For a while, sent emails went to a sent folder on the iMac so I have a collection of sent emails there.  How can I move them to a sent box on my server so I can see them on other devices?

    I have an iMac 3.2 GHz Intel Core i5 with 16 GB memory and 1.12 TB storage running Yosemite 10.10.1 & Outlook 2011 for Mac.  For a while, sent emails went to a sent folder on the iMac so I have a collection of sent emails there.  I have attempted to move those sent emails from the iMac to my email server (IMAP), but without success.  Is there a way to move them to a sent box on my server so I can see them on other devices?  Many thanks for any help you can provide.

    Go to: Apple > System Preferences > Universal Access and in the Seeing tab make sure that the Display Enhance contrast: is set to Normal.
    Alternatly, try holding the  ⌃⌥⌘ (control command alt) keys and then pressing the , (comma) key a few times.

  • I have recently bought a macbook and am using outlook 2011 as email. i am getting an error message 4.7.0 not allowed when sending emails how do I fix?

    i have a macbook and am using outlook 2011 as email.   receiving okay.   sending okay sometimes.  am now getting error message 4.7.0 not allowed when sending.  what is the cause? how do I fix please?

    I have discovered that the emails have in fact been sent but much later, maybe it's a network problem with the people i am sending it to.  so i checked my sent items and they are there, but at the time the email doesn't go straight into the sent box or drafts so i'm assuming it's disappeared and type it again.  i'll keep going with it, until someone can give me a possible solution or explanation as to what is happening.

  • I am having to double click on everything in outlook 2011 to get anything to work.

    For some weird reason, I have to double click on just about anything to get it to work in Outlook 2011.  For example, if I click once on a folder it does not go to that folder until I click it again.  This is annoying in that there are a few things that respond to a single click, so as you are doulble-clicking around you hit one of the things that doesn't require a double-click and end up having to go back 5 steps to fix what you did.
    Anyone else see this?

    If the downloads are gone, it's possible that Windows is removing the downloads based on security policies set in IE. I realize that sounds strange, but it's related to Firefox's feature of submitting downloads to your virus scanner and marking them as having come from the internet.
    To test this theory, you could try disabling the scan feature. I assume you have good "real time" antivirus protection which checks every file saved to your hard drive. (If not, you really should get that, and you can use Microsoft's free [http://windows.microsoft.com/en-US/windows/products/security-essentials Microsoft Security Essentials] for now until you have time to review all the available choices.)
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''scan''' and pause while the list is filtered
    (3) Double-click '''browser.download.manager.scanWhenDone''' to toggle its value.
    Firefox now should ignore Windows' download security. Does it change how Windows handles the file?

  • How can i synchronize my outlook 2011 with icloud

    Hi there,
    I've just been googling a lot, but didn't find a answer to my question, just people who find the same problem actually. I was wondering if anyone could save this puzzle yet:
    After some tests I learned, that mac—when you first activate your iCloud—uses two different contact and calendar sources: the local and the one exported to the cloud. So as for my office solution I need a three step synchronization. I work with Outlook 2011 and use this calendar, and also quite frequently my calendar on my iphone. So of course I would want them synchronized as much as possible.
    What my mac does: synchronizes phone and mac calendar perfectly, not the Outlook calendar though. As I saw in the Outlook preferences, Outlook is only connected to the local calendar. Therefor all events disappear when I cleaned out my mac calendar of double events (local and iCloud appeared there).
    How can I get my Outlook to take the iCloud calendar as main source?
    I also faced that problem in my mac adressbook (which synchronizes with Oultook): there I do have double contacts too, since you can't deactivate the local contact account.
    Not good :-( I'd be very happy if someone had some anwers.
    Thanks a lot in advance.

    Welcome to the Apple community.
    Outlook is not compatible with iCloud, you should change your contacts and calendars to iCal and address book.

  • How do I stop my contacts syncing with Outlook 2011?

    Hi - I have been using Outlook 2011 but I want to stop using it because it's really buggy.  I have opened sync services in Outlook and unchecked all, but how do I make my contacts sync with Address book again?  At present they will not

    What is syncing between them ? If calendars, contacts, safari favourites then are you using the same iCloud account on both devices and have them enabled in Settings > iCloud on both ?
    If apps, music, and/or ibooks that you buy on one device are automatically downloading on the other device then do you have automatic downloads enabled for them in Settings > iTunes & App Store on your phone/iPad ?

Maybe you are looking for

  • Weird SQL server cursor issue

    Hi All. I have a stored procedure which can be seen below. The way it should work is that it should loop through a lot of all the databases on the SQL instance and pass the details onto another stored procedure. The stored procedure is called from SQ

  • Hi my ipod was restoring but then i had to leave wi-fi and it paused i havent been able to get it started again. is there something i can do ?

    hi i was restoring  my iPod but while i was i had to leave wifi that paused the restoring  and i haven't been able to restart it again. i had photos i need to restore. how can i finish restoring the iPod?

  • Loss of Edits in a non cross-platform InDesign/InCopy Workflow

    I have read, and understand, the cross-platform issues related to loss of edits in InCopy. We are experiencing the same issue on an all Windows network.  Some authors have experienced the following issue: Author checks out a story and edits the conte

  • VB6 and CR XI R2

    I have a VB6 application that includes the Crystl32.ocx from version 8.5.  I have other applications (VB.NET) that use CR XI R2.  I cannot upgrade the application from VB6 to VB.NET.  I am trying to get all of my applications on CR XI R2.  Can someon

  • Oracle reports  don't support the full Aero Theme

    iHello to all, is possible with a workaround to have Aero theme with Oracle reports? Same with sql developer To enable Aero support open up sqldeveloper.conf and add the following line: AddVMOption -Dsun.java2d.noddraw=true Thanks